diff options
Diffstat (limited to 'examples/hello-world.cff')
| -rw-r--r-- | examples/hello-world.cff | 2 |
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); } |