ソースを参照

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;
+}