level 1
// Loops repeat a block of code multiple times.
// A block of code starts with {
// A block of code ends with }
while(true)
// Add { here to start a block of code.
hero.moveRight();
hero.moveUp();
hero.moveLeft();
hero.moveDown();
// Add } here to end a block of code.
2017年10月21日 02点10分