mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
8 lines
229 B
NASM
8 lines
229 B
NASM
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
|