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

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