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