浏览代码

add c helloworld sample program

Noah Vogt 3 年之前
父节点
当前提交
5e9fc4228c
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      maturText/helloworld.c

+ 6 - 0
maturText/helloworld.c

@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main() {
+    printf("Hello World\n");
+    return 0;
+}