aboutsummaryrefslogtreecommitdiff
path: root/notes/annotations/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'notes/annotations/hello.c')
-rw-r--r--notes/annotations/hello.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/notes/annotations/hello.c b/notes/annotations/hello.c
new file mode 100644
index 00000000..db37785d
--- /dev/null
+++ b/notes/annotations/hello.c
@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int main (int a) {
+ for( int i = 0; i < a; i++) {
+ return printf("Hello World\n");
+ }
+}