浏览代码

add l1.c and .gitignore

Stepan 2 月之前
父节点
当前提交
d3cc18b872
共有 2 个文件被更改,包括 7 次插入0 次删除
  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;
+}