summaryrefslogtreecommitdiff
path: root/first_code.c
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2017-02-06 11:26:44 -0500
committerAlexander Pickering <alexandermpickering@gmail.com>2017-02-06 11:26:44 -0500
commit97a693d996c79fb2a008b19750d8bb45512e01a2 (patch)
tree6df17bfe7de7c59f7b1083828d71a91e61fae9fa /first_code.c
downloadengr0016-master.tar.gz
engr0016-master.tar.bz2
engr0016-master.zip
Inital commitHEADmaster
Diffstat (limited to 'first_code.c')
-rw-r--r--first_code.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/first_code.c b/first_code.c
new file mode 100644
index 0000000..87be6e7
--- /dev/null
+++ b/first_code.c
@@ -0,0 +1,8 @@
+/* this is the first code!*/
+#include <stdio.h>
+
+int main()
+{
+ printf("I love college\n");
+ return 1;
+}