add src/main.c to git

This commit is contained in:
Alexey Norets 2025-09-20 11:01:20 +03:00
parent 7109fc9e63
commit 88cade51fc
2 changed files with 8 additions and 2 deletions

2
.gitignore vendored
View File

@ -1,7 +1,5 @@
/build/*
/build/
/src/*
/src/
/*.old
/nob
/a.out

8
src/main.c Normal file
View File

@ -0,0 +1,8 @@
/* Initial 'Hello World' */
#include <stdio.h>
int main()
{
printf("Hello, world\n");
return 0;
}