Puzzle Description:
PaperBugs is a little puzzle where you control bugs on a grid by writing a simple program. Each bug executes the same program step-by-step to reach their targets.
Instructions:
- MOVE - move forward one cell
- LEFT / RIGHT - rotate 90 degrees
- IF FLOWER - execute next line only if flower ahead (the next cell the bug is currently facing)
- IF EMPTY - execute next line only if path clear
Puzzle - “Avoid the flower” (Easy)
- [ ][ ][T]
- [B][F][ ]
- [ ][ ][ ]
Legend:
- B: Bug (starts facing right)
- T: Target
- F: Flower
- [ ]: Empty space
Goal: Get the bug to the target.
You must log in or register to comment.