LanguageFunctionsOn this pageFunctions Defining functions pub static fn square(value: i32) -> i32 { return value * value;} Calling functions let result = square(32);