function is_equal (x, y) {
if (x == y)
print("x is equal to y")
return true;
return false;
}
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
replies:
function is_equal (x, y) {
if (x == y)
print("x is equal to y")
return true;
return false;
}