diff options
| author | verdant <im@verdant.ee> | 2026-06-01 20:44:58 +0800 |
|---|---|---|
| committer | verdant <im@verdant.ee> | 2026-06-01 20:44:58 +0800 |
| commit | 126762cc9b3322d724102ebd94ff8d4e2311c150 (patch) | |
| tree | eab28df1fcaa7465bd82f735b1bfba3a316ea491 /helloworld.c | |
| download | no-stdlib-helloworld-126762cc9b3322d724102ebd94ff8d4e2311c150.tar.gz no-stdlib-helloworld-126762cc9b3322d724102ebd94ff8d4e2311c150.zip | |
Initial commit
Diffstat (limited to 'helloworld.c')
| -rw-r--r-- | helloworld.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/helloworld.c b/helloworld.c new file mode 100644 index 0000000..5d89a54 --- /dev/null +++ b/helloworld.c @@ -0,0 +1,4 @@ +int main() { + write(1, "hello world", 12); + exit(0); +} |
