// Arithmetic, function calls and imports! fn test(value: T) -> T { let b: T = value; return b; } fn main() -> u32 { return test(15) as u32 + test(5); }