summaryrefslogtreecommitdiffhomepage
path: root/CompilerDriver/cc2/regression-tests/pure2-stdio.cpp2
blob: 5e30fb78f24c8e8be07ce02a1c2f3d6ec340e5ee (plain)
1
2
3
4
5
6
7
8
9
10

//  "A better C than C" ... ?
//
main: () -> int = {
    s: std::string = "Fred";
    myfile := fopen("xyzzy", "w");
    _ = myfile.fprintf( "Hello %s with UFCS!", s.c_str() );
    _ = myfile.fclose();
}