add l1.c and .gitignore

This commit is contained in:
Stepan 2026-05-07 00:06:31 +03:00
parent 5714f291b0
commit d3cc18b872
2 changed files with 7 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
.vscode
.env

5
l1.c Normal file
View file

@ -0,0 +1,5 @@
#include <stdio.h>
int main() {
printf("hello");
return 0;
}