diff options
| author | 2022-08-20 14:02:48 +0200 | |
|---|---|---|
| committer | 2022-08-20 14:02:48 +0200 | |
| commit | 0ede7e7f9d6235092d9e3ae2df8b25445fb89c38 (patch) | |
| tree | 54df7ec7aeeab5e2209c6e4be33dc6c5ed696848 /examples/hello-world.cff | |
| parent | 46e1f128fd310bd29a2b4335b36c60d6cc0aa3a7 (diff) | |
more IR progress
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 42258ab..c4a99ea 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 %d", 42); + printf("hello %d", argc + 42); } |