master
c 7 lines 82 Bytes
Raw
1 #include <unistd.h>
2
3 int main(void)
4 {
5 write(1, "hello\n", 6);
6 return 0;
7 }