summaryrefslogtreecommitdiff
path: root/lecture2/hello.c
diff options
context:
space:
mode:
authorAlexander Pickering <alex@cogarr.net>2020-01-01 22:37:37 -0500
committerAlexander Pickering <alex@cogarr.net>2020-01-01 22:37:37 -0500
commit9fae5d516012e2c0802105e67c79e2587a22b9dc (patch)
tree1c782ad2cd08bd1ecc4f0b42bd042778b4f34c2e /lecture2/hello.c
downloadinfsci2620-master.tar.gz
infsci2620-master.tar.bz2
infsci2620-master.zip
Inital commitHEADmaster
Diffstat (limited to 'lecture2/hello.c')
-rw-r--r--lecture2/hello.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lecture2/hello.c b/lecture2/hello.c
new file mode 100644
index 0000000..2c8db64
--- /dev/null
+++ b/lecture2/hello.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main(){
+ double float test = 5;
+ printf("Hello, world!\n");
+}