You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
191 B

# In any case, jump only if 4th tile is ground as it's where we land.
OR D J
# If 3rd is a hole, jump.
NOT C T
AND T J
# If the next tile is a hole, you must jump anyway.
NOT A T
OR T J
WALK