Return
return
statement represents return from function.
The expression after return
keyword is the return value of the function.
module ModuleA {
function FunctionA () -> u32 {
return 0;
}
}
return
statement represents return from function.
The expression after return
keyword is the return value of the function.
module ModuleA {
function FunctionA () -> u32 {
return 0;
}
}