大宮盆栽デイズ - Omiya Bonsai Days -

冗談めかす埼玉のファインマン

右手法@コードを学ぼう1

//右手法@コードを学ぼう1
func navigateAroundWall() {
    if isBlockedRight {
        moveForward()
    }  else {
        turnRight()
        moveForward()
    }
}

while !isOnClosedSwitch {
    navigateAroundWall()
    if isOnGem {
        collectGem()
        turnLeft()
        turnLeft()
    }
    
}
toggleSwitch()