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

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

回る@コードを学ぼう1

//回る@コードを学ぼう1
func s() {
    moveForward()
    collectGem()
    turnLeft()
    moveForward()
    collectGem()
    turnLeft()
    moveForward()
    turnRight()
}
for i in 1 ... 4 {
    s()
}