aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2022-08-20 11:06:38 +0200
committerlemon <lsof@mailbox.org>2022-08-20 11:06:38 +0200
commit46e1f128fd310bd29a2b4335b36c60d6cc0aa3a7 (patch)
treefeb93a69cf93773d0542435ae09c76de04e509c8 /examples
parentdf41a4512932f1312e4725d0409757a683b091ed (diff)
initial work on IR
Diffstat (limited to 'examples')
-rw-r--r--examples/hello-world.cff2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hello-world.cff b/examples/hello-world.cff
index 3eb198c..42258ab 100644
--- a/examples/hello-world.cff
+++ b/examples/hello-world.cff
@@ -1,6 +1,6 @@
import "libc.hff";
extern fn main(argc int, argv *const *const u8) int {
- printf("hello world\n");
+ printf("hello %d", 42);
}