diff options
| author | 2023-06-05 10:28:57 +0200 | |
|---|---|---|
| committer | 2023-06-05 10:58:35 +0200 | |
| commit | ed47a54958f5bd48dc364d4a0f77f778768696bb (patch) | |
| tree | c68f7b1426c198964b37238c6195f0569a15ab2b /test/hello.c | |
| parent | efc0cf8039cbff5e0f0d52fd7414c7186129b6ac (diff) | |
strlits
Diffstat (limited to 'test/hello.c')
| -rw-r--r-- | test/hello.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/hello.c b/test/hello.c new file mode 100644 index 0000000..98a93a0 --- /dev/null +++ b/test/hello.c @@ -0,0 +1,5 @@ +int printf(const char *, ...); + +int main() { + printf("hello world\n"); +} |