Changes in translator/examples/identity.c [c11e31c:42dcae7]
- File:
-
- 1 edited
-
translator/examples/identity.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
translator/examples/identity.c
rc11e31c r42dcae7 9 9 ofstream *sout = ofstream_stdout(); 10 10 char c = 'a'; 11 c = identity( c );12 11 sout << c << ' ' << identity( c ) << '\n'; 13 12 int i = 5; 14 i = identity( i );15 13 sout << i << ' ' << identity( i ) << '\n'; 16 14 double d = 3.2; 17 d = identity( d );18 15 sout << d << ' ' << identity( d ) << '\n'; 19 16 }
Note:
See TracChangeset
for help on using the changeset viewer.