"A Space Odyssey" The position will change while tapping (clicking) the screen. Let's move steadily as we lose the flying stars! The score will go up as you go forward. When playing with IchigoLatte, press the button. This program is for beginners.
var b=0;
var s=0;
var x=4,y=10;
cls();
while(1){
if((rnd(100)<=20)){
var h_y=y-2+rnd(5);
lc(30,h_y);log("*");
}
b=btn();
lc(x,y-b);log(chr(251));
scroll(3);
var c=scr(x,y-b);
if ((c!=0)*(c!=32)) {
lc(0,0);log(s);
exit(0);
}
s=s+1;
sleep(50);
}