liblinux/examples/hello.c

8 lines
136 B
C
Raw Normal View History

2021-12-03 14:05:10 +00:00
#include "../src/liblinux.h"
int main() {
char hellostr[] = "Hello, World!\n";
write(1, hellostr, sizeof(hellostr));
return 0;
}