Last active
December 10, 2015 20:49
-
-
Save mjard/4490986 to your computer and use it in GitHub Desktop.
is it a bot yet?
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
# maybe we bit off more than we could chew | |
store GRIDSIZE << 12 | |
<< GRIDSIZE | |
@start | |
minus << 1 | |
dup | |
equal << 0 | |
iftgoto << @up | |
@search | |
FFI << @LOOK @WEST | |
dup | |
equal << @CELL_RESOURCE | |
iftgoto << @eatit | |
equal << @CELL_ROBOT | |
iftgoto << @punchit | |
FFI << @MOVE @WEST | |
pop | |
goto << @start | |
@up | |
plus << GRIDSIZE | |
FFI << @MOVE @NORTH | |
pop | |
goto << @search | |
@eatit | |
pop | |
FFI << @PULL @WEST | |
pop | |
goto << @search | |
@punchit | |
FFI << @PUNCH @WEST | |
pop | |
goto << @search | |
@fullscan | |
<< @NORTH @SOUTH @EAST @WEST |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment