#include "fstream.h"

int main() {
    ofstream *sout = ofstream_stdout();
    ifstream *sin = ifstream_stdin();
    sout << "Bonjour au monde!\n";
    sout << 3 << " " << 3.5 << " " << 'a' << " " << "abc" << "\n";
    int i, j, k;
    sin >> &i >> &j >> &k;
    sout << "i:" << i << " j:" << j << " k:" << k << "\n";
}

// Local Variables: //
// compile-command: "../../bin/cfa hello.c fstream.o iostream.o" //
// End: //
