source: trunk/yao/share/antlr-2.7.7/examples/java/inherit.tinyc/input.c @ 1

Last change on this file since 1 was 1, checked in by lnalod, 15 years ago

Initial import of YAO sources

  • Property svn:eol-style set to native
File size: 252 bytes
Line 
1int i = 4;      // look: tinyc cannot do this, but we can!
2int *i;
3
4int f(char c, char *d)
5{
6        int f = 5;      // look: tinyc cannot do this, but we can!
7        c = '\033'+'\47'+'\''+'\\';
8        d = " \" '\\' foo";
9        i = c+3*f;
10        if ( i ) {
11                f = c;
12        }
13        else {
14                f = 1;
15        }
16}
17
Note: See TracBrowser for help on using the repository browser.