Files
thor/thor.c
matthias wagner 3c5b955e31 hello world
2023-07-13 21:12:36 +02:00

8 lines
131 B
C

#include <stdio.h>
// run using gcc thor.c && ./a.out
int main(int argc, char **argv){
printf("Hello, World!");
return 0;
}