ciabatta/tests/hello.c

11 lines
235 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) {
2023-09-11 17:33:42 +00:00
// char string[] = "Hello, world!\n";
// fwrite(string, 1, sizeof string-1, stdout);
printf("Hello, world! %d\n", 4);
2023-07-28 08:53:06 +00:00
return 0;
}