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