summaryrefslogtreecommitdiff
path: root/wk1/meow.c
diff options
context:
space:
mode:
Diffstat (limited to 'wk1/meow.c')
-rw-r--r--wk1/meow.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/wk1/meow.c b/wk1/meow.c
new file mode 100644
index 0000000..1f511c8
--- /dev/null
+++ b/wk1/meow.c
@@ -0,0 +1,11 @@
+#include <stdio.h>
+#include <cs50.h>
+
+int main(void)
+{
+ int x = 36;
+ for (int i = 0; i < x; i++)
+ {
+ printf("meow\n");
+ }
+}