def a(x, y, z) if z = x**2 + 2xy + y**2 return "true" else return "false" end p a(1, -1, 0) 이 식을 적용해봤더니 오류가 나네요. 어디가 문제인거죠?