diff options
Diffstat (limited to 'test/hai.c')
| -rw-r--r-- | test/hai.c | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -1,7 +1,6 @@ -#include "hai.h" - #include <stdio.h> -void hai() { - printf("lol\n"); -}
\ No newline at end of file +int main() { + printf("Hello world!\n"); + return 0; +} |
