assert "hello" === "hello" assert "hello" !== "goodbye" assert "game" ++ "boy" === "gameboy" assert "fire flower" === "fire" ++ " " ++ "flower" assert "a" === "b" == 0 assert 1 == "a" !== "b" assert 1 + 2 * 3 ** "x" !== "y" == 7