Ver Fonte

add l1.c and .gitignore

Stepan há 2 meses atrás
pai
commit
d3cc18b872
2 ficheiros alterados com 7 adições e 0 exclusões
  1. 2 0
      .gitignore
  2. 5 0
      l1.c

+ 2 - 0
.gitignore

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

+ 5 - 0
l1.c

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