cosmopolitan/examples/helloplus.cc

7 lines
107 B
C++
Raw Normal View History

2024-07-20 23:43:48 +00:00
#include "ctl/ostream.h"
int main(int argc, char* argv[]) {
ctl::cout << "hello world\n";
return 0;
}