class LeftThenTwo < Strategy def do_it(robot) robot.turn_left() robot.move() robot.move() end end
[Validate]