1 2 3 4 5 6 7 8 9 10 11 12
@import("basic.felan"); t :: (comptime b:u8) -> void { print(b); print(a); }; main :: () -> void { a := 2u8; t(5u8); };