Home Keywords
Return a value at the end of a function.
function simpleReturn; # Simply return the value 5. return 5; int toAssign; call simpleReturn -> toAssign; # toAssign now equals 5.