ciabatta/tests/hello.c

10 lines
192 B
C
Raw Normal View History

2023-07-28 08:53:06 +00:00
2023-08-26 07:39:40 +00:00
#include <cia/def.h>
2023-07-28 08:53:06 +00:00
#include <stdio.h>
int main(int argc, char **argv, char **envp) {
char string[] = "Hello, world!\n";
fwrite(string, 1, sizeof string-1, stdout);
return 0;
}