c-first-steps

a C playground
Index Commits Files Refs README
commit 143c5c58603dbc551008e839175609ae5ebd0384
parent d295ee0eadf4a43fece665981ca8234a9937d518
Author: Martin J. Klöckner <martin.cachari@gmail.com>
Date:   Sun, 25 Oct 2020 16:50:47 -0300

Written in atom and uploaded using a windows computer

Diffstat:
Ahelloworld_w.c | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/helloworld_w.c b/helloworld_w.c
@@ -0,0 +1,8 @@
+#include <stdio.h>
+
+int main(void) {
+
+  printf("Hello world!");
+
+  return 0;
+}