Pārlūkot izejas kodu

add c helloworld sample program

Noah Vogt 3 gadi atpakaļ
vecāks
revīzija
5e9fc4228c
1 mainītis faili ar 6 papildinājumiem un 0 dzēšanām
  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;
+}