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

2019/05/10 12:32:35

MixJuice GET URL : kidspod.club/mj/826

ランダム画面 (IchigoLatte Ruby)

IchigoLatte Ruby 版プログラムです。
(IchigoLatte 関連製品を含む JavaScript 版では動作しません)

詳細は イチゴジャム レシピ で公開しています。
「プログラムをみる」を参照して下さい。

SOURCE CODE

# Random Screen

cls

while 1
 r=rnd 32*24-1
 lc r%32,r/32

 c=rnd 2
 if c==1
  c=0x8f
 else
  c=0x20
 end
 print chr c
end

COMMENT