Enjoy programming more!
Kidspod is a post site which supports young programmers.
First step to join us.
Register as a member
For members

2017/09/12 11:27:30

MixJuice GET URL : kidspod.club/mj/283

004

  • No registered tag exist.

SOURCE CODE

var key;
key = 0;
lc(8, 11);
log("PUSH SPACE KEY");
while(key != 32){
 key = inkey();
 sleep(10);
}

var x;
x = 0;
while(x < 32){
 lc(x, 11);
 log("-");
 x = x + 1;
 sleep(100);
}

lc(13, 11);
log("GOAL!!");

COMMENT

Kidspod運営チーム
Kidspod運営チーム2017/09/12 12:46:16

最後の行で、GOAL!!の後に「"」が抜けているようです! ここを直せば、ちゃんと動きますよ。