From f2709e85dbe27ba60346e14ad61c310c66160c87 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Sun, 11 Jul 2021 19:29:54 +0100 Subject: [PATCH] Make sure to actually add Hello World! --- hello.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.c b/hello.c index 5d45caf..5460391 100644 --- a/hello.c +++ b/hello.c @@ -3,7 +3,7 @@ void println(char *printString); int main() { - println("This is a test"); + println("Hello World!"); return 0; }