aboutsummaryrefslogtreecommitdiffstats
path: root/dev/snowman/main.cc
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--dev/snowman/main.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/dev/snowman/main.cc b/dev/snowman/main.cc
new file mode 100644
index 0000000..20e2ea3
--- /dev/null
+++ b/dev/snowman/main.cc
@@ -0,0 +1,9 @@
+/** CSci-4611 In-Class Example */
+
+#include "snowman.h"
+
+int main(int argc, const char *argv[]) {
+ Snowman app;
+ app.Run();
+ return 0;
+}