From 73f68a9c5ed4c8139cc1c4f7695da29e5a3fb4c8 Mon Sep 17 00:00:00 2001 From: lemon Date: Tue, 16 Aug 2022 05:28:18 +0200 Subject: stuff --- examples/hello-world.cff | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'examples/hello-world.cff') diff --git a/examples/hello-world.cff b/examples/hello-world.cff index 9764ac2..4eb9352 100644 --- a/examples/hello-world.cff +++ b/examples/hello-world.cff @@ -1,6 +1,9 @@ extern fn printf(fmt *const u8, ...) int; +extern fn cos(x f32) f32; -extern fn main(argc int, argc *const *const u8) int { +extern fn main(argc int, argv *const *const u8) int { + 1 - (1 + argv); + argc *= 7; printf("hello world\n"); } -- cgit v1.2.3