Skip to content

Instantly share code, notes, and snippets.

@mjard
Last active December 10, 2015 20:49
Show Gist options
  • Save mjard/4490986 to your computer and use it in GitHub Desktop.
Save mjard/4490986 to your computer and use it in GitHub Desktop.
is it a bot yet?
# 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