cosmopolitan/examples/helloplus.cc
2024-07-20 16:43:48 -07:00

6 lines
107 B
C++

#include "ctl/ostream.h"
int main(int argc, char* argv[]) {
ctl::cout << "hello world\n";
return 0;
}