Return
Be sure to see function declarations.
function stringEq
Boolean ::= s1::String s2::String
{
return s1 == s2;
}
Each function should have exactly one return
statement within its body, with the usual meaning.
Be sure to see function declarations.
function stringEq
Boolean ::= s1::String s2::String
{
return s1 == s2;
}
Each function should have exactly one return
statement within its body, with the usual meaning.