Explorar el Código

add l1.c and .gitignore

Stepan hace 2 meses
padre
commit
d3cc18b872
Se han modificado 2 ficheros con 7 adiciones y 0 borrados
  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;
+}