【代码】使值变大

前言

关卡攻略

源代码

1
2
3
4
5
6
var gemCounter = 0
for i in 1 ... 5 {
moveForward()
collectGem()
gemCounter += 1
}

完成