aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-09-04 08:45:52 -0400
committerClyne Sullivan <tullivan99@gmail.com>2015-09-04 08:45:52 -0400
commitcb14430de20c8d5230e0649e2da12bf1943adbb5 (patch)
treece99fd570ec15449f67de834a7722ea8fb57fb3c /src
parente7a768cf081751ddba2e903a37f51725abfb5b36 (diff)
Added hello world
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp7
1 files changed, 7 insertions, 0 deletions
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 <stdio.h>
+#include <SDL2/SDL.h>
+
+int main(int argc,char **argv){
+ puts("Hello, world!");
+ return 0;
+}