~ubuntu-branches/ubuntu/wily/gargoyle-free/wily-proposed

« back to all changes in this revision

Viewing changes to tads/tads3/test/data/retbreak.t

  • Committer: Bazaar Package Importer
  • Author(s): Sylvain Beucler
  • Date: 2009-09-11 20:09:43 UTC
  • Revision ID: james.westby@ubuntu.com-20090911200943-idgzoyupq6650zpn
Tags: upstream-2009-08-25
ImportĀ upstreamĀ versionĀ 2009-08-25

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
main(args)
 
2
{
 
3
    switch (args[1])
 
4
    {
 
5
    case 1:
 
6
        return 1;
 
7
        break;
 
8
 
 
9
    default:
 
10
        return nil;
 
11
        break;
 
12
    }
 
13
    return 2;
 
14
}