aboutsummaryrefslogtreecommitdiffstats
path: root/rpout.c
diff options
context:
space:
mode:
Diffstat (limited to 'rpout.c')
-rw-r--r--rpout.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/rpout.c b/rpout.c
new file mode 100644
index 0000000..a07f382
--- /dev/null
+++ b/rpout.c
@@ -0,0 +1,13 @@
+#include <stdio.h>
+
+#define void rp(char output[])
+
+main () {
+ rp("Test");
+ rp("Ok, this is no longer a test.");
+ rp("TK throws his arms around you and squeezes you");
+}
+
+rp (char output[]) {
+ printf(" [RPOUT] : %s \n", output);
+}