我的老师向我们介绍了Minecraft中这种很酷的代码编写方式。该接口在Minecraft EE上称为MakeCode,目前为止它使用JavaScript。我在声明2D数组时遇到问题。我收到标题中所述的错误。
let m=[0,0,0][0,0,0]
function outputArray() {
for (let i = 490; i <= 510; i++) {
for (let j = 490; j <= 510; j++) {
if (m[i][j] == 1)
agent.setAssist(AgentAssist.PlaceOnMove, true)
agent.move(SixDirection.Right, 1)
agent.setAssist(AgentAssist.PlaceOnMove, false)
}
agent.move(SixDirection.Back, 1)
agent.move(SixDirection.Left, 510 - 490 + 1)
}
}