hello world

This commit is contained in:
matthias wagner
2023-07-13 21:12:36 +02:00
commit 3c5b955e31
2 changed files with 9 additions and 0 deletions

8
thor.c Normal file
View File

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