1 2 3 4 5 6 7 8 9 10
main :: () -> void { comptime test(u64,u64); }; test :: (from:type, to:type) -> void { if from == to print_u64 1234; else print_u64 4321; };