woody/main.c

9 lines
91 B
C
Raw Normal View History

2022-03-31 09:28:52 +00:00
#include <stdio.h>
int
main(int argc, char *argv[])
{
puts("hello, world");
return 0;
}