summaryrefslogtreecommitdiff
path: root/code/intro/hello.c
diff options
context:
space:
mode:
authorMike Vink <mike1994vink@gmail.com>2023-07-12 23:33:56 +0200
committerMike Vink <mike1994vink@gmail.com>2023-07-12 23:33:56 +0200
commit77f19e4a89d8dec97930c5e237139734c5fb3365 (patch)
treea79ae400ae10c7bda244211b14162c90cc20ee1b /code/intro/hello.c
init
Diffstat (limited to 'code/intro/hello.c')
-rw-r--r--code/intro/hello.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/code/intro/hello.c b/code/intro/hello.c
new file mode 100644
index 0000000..b9dbb17
--- /dev/null
+++ b/code/intro/hello.c
@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int main()
+{
+ printf("hello, world\n");
+ return 0;
+}