From ca88375a32faef126c4ca380d3738045ba7458ed Mon Sep 17 00:00:00 2001 From: Jeremy Walker Date: Thu, 17 Aug 2023 20:01:30 +0100 Subject: [PATCH] Hello World should start with the default stub --- exercises/practice/hello-world/hello_world.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/exercises/practice/hello-world/hello_world.c b/exercises/practice/hello-world/hello_world.c index 237889799..b065b7c6e 100644 --- a/exercises/practice/hello-world/hello_world.c +++ b/exercises/practice/hello-world/hello_world.c @@ -1,14 +1,7 @@ -// Include the standard definitions header from the standard library, so that we -// have access to 'NULL'. This can be removed if your changes remove the need -// for 'NULL'. -#include - #include "hello_world.h" // Define the function itself. const char *hello(void) { - // To fix this function, change the return statement here to instead return - // a string equivalent to the string expected by the failing test. - return NULL; + return "Goodbye, Mars!"; }