Created
August 29, 2018 10:23
-
-
Save terrorobe/4f2c05a1091e071b74ed631f26a7101f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 7 Billion Humans (2059) -- | |
-- 20: Reverse Line -- | |
if w == nothing or | |
e == nothing: | |
step s | |
pickup c | |
if e == hole: | |
jump a | |
endif | |
else: | |
end | |
endif | |
b: | |
c: | |
step e | |
if c == nothing: | |
drop | |
step w | |
pickup c | |
jump d | |
endif | |
jump b | |
e: | |
d: | |
a: | |
step w | |
if c == nothing: | |
drop | |
step e | |
pickup c | |
jump c | |
endif | |
jump e | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment