webvm/examples/c/helloworld.c
2022-01-31 22:00:49 +01:00

6 lines
63 B
C

#include <stdio.h>
int main()
{
printf("Hello, World!\n");
}