diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..8b2eafb --- /dev/null +++ b/hello.c @@ -0,0 +1,8 @@ +#include +#include +int main(void) +{ + string name = get_string("what is your name?\n"); + + printf("hello, %s \n", name); +}