fix: return Hi instead of Hello

This commit is contained in:
Renge 2022-02-07 15:53:55 -05:00
parent d60cb622aa
commit 307de90e13

View File

@ -6,6 +6,6 @@
*/
char* say_hi(){
return "Hello";
return "Hi";
}
/* Back over to main to finish our program */