summaryrefslogtreecommitdiff
path: root/test.toc
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2019-09-01 23:11:28 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2019-09-01 23:11:28 -0400
commite71901e1f0a981aff8eb37162ab053e1bb9df5aa (patch)
tree7c1388df139b4ec9206e6ca8b27483c329677333 /test.toc
parent16b12d6f3135b2addab50ad257f30301928759db (diff)
#C directive
Diffstat (limited to 'test.toc')
-rw-r--r--test.toc7
1 files changed, 5 insertions, 2 deletions
diff --git a/test.toc b/test.toc
index 54f217e..86d8961 100644
--- a/test.toc
+++ b/test.toc
@@ -1,6 +1,9 @@
-ųńĨ🐟 @= fn() {
+#C("#include <stdio.h>\n");
+
+ųńĨ @= fn() {
+ #C("printf(\"Hello, World!\\n\")");
};
main @= fn() {
- ųńĨ🐟();
+ ųńĨ();
};