ciabatta/test/helloworld.c

8 lines
81 B
C
Raw Normal View History

2022-08-08 12:39:43 +00:00
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}