diff options
Diffstat (limited to 'wk1/pset1/hello.c')
-rw-r--r-- | wk1/pset1/hello.c | 8 |
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); -} |