From: Clyne Sullivan Date: Fri, 4 Sep 2015 12:45:52 +0000 (-0400) Subject: Added hello world X-Git-Url: https://code.bitgloo.com/?a=commitdiff_plain;h=cb14430de20c8d5230e0649e2da12bf1943adbb5;p=clyne%2Fgamedev.git Added hello world --- diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..cd3f624 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,7 @@ +#include +#include + +int main(int argc,char **argv){ + puts("Hello, world!"); + return 0; +}