Fix regression with last commit

This commit is contained in:
Justine Tunney 2024-07-20 16:43:48 -07:00
parent d3f87f4c64
commit d3167126aa
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
5 changed files with 12 additions and 12 deletions

6
examples/helloplus.cc Normal file
View file

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