commit 8a7594f5af4adbfb61a694c310f802f3b2466c40 Author: kukemuna Date: Tue Feb 20 21:56:33 2024 +0200 automated commit by check50 [check50=True] diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..591dd57 --- /dev/null +++ b/hello.c @@ -0,0 +1,8 @@ +#include +#include + +int main(void) +{ + string name = get_string("What's your name? "); + printf("hello, %s\n", name); +}