cosmopolitan/examples/helloplus.cc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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;
}