]> Pileus Git - ~andy/sfvlug/blobdiff - c/src/hello.c
Add C notes.
[~andy/sfvlug] / c / src / hello.c
diff --git a/c/src/hello.c b/c/src/hello.c
new file mode 100644 (file)
index 0000000..503e170
--- /dev/null
@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int main()
+{
+       printf("Hello, World\n");
+       return 0;
+}