summaryrefslogtreecommitdiff
path: root/wk1/pset1/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'wk1/pset1/hello.c')
-rw-r--r--wk1/pset1/hello.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/wk1/pset1/hello.c b/wk1/pset1/hello.c
deleted file mode 100644
index d840466..0000000
--- a/wk1/pset1/hello.c
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <stdio.h>
-#include <cs50.h>
-
-int main(void)
-{
- string name = get_string("What's your first name? ");
- printf("Hello, %s\n", name);
-}