There was an error while loading. Please reload this page.
This code makes things like ints except that != always returns False.
class hacked_int(int): def __ne__(left, right): return False
Then, do
spawn(hacked_int(4), hacked_int(0))
to spawn a pawn at row = 4 and col = 0.
This code makes things like ints except that != always returns False.
Then, do
to spawn a pawn at row = 4 and col = 0.