#include "fstream.h" forall( type T ) T identity( T t ) { return t; } int main() { ofstream *sout = ofstream_stdout(); char c = 'a'; c = identity( c ); sout << c << ' ' << identity( c ) << '\n'; int i = 5; i = identity( i ); sout << i << ' ' << identity( i ) << '\n'; double d = 3.2; d = identity( d ); sout << d << ' ' << identity( d ) << '\n'; } // Local Variables: // // compile-command: "../../bin/cfa identity.c fstream.o iostream.o" // // End: //