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 19:25:57

MixJuice GET URL : kidspod.club/mj/831

キャラクターコード一覧 16 進数 (Latte Ruby)

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

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

SOURCE CODE

# Character Code List 16

cls

c=0
while c<256
 lc c%16+2,c/16+2
 print chr c
 c=c+1
end

i=0
while i<16
 c=i+48
 if i>9
  c=c+7
 end
 lc i+2,0
 print chr c
 lc i+2,1
 print chr 145
 lc 0,i+2
 print chr c
 lc 1,i+2
 print chr 146
 i=i+1
end

lc 0,0
print "\\"
lc 1,1
print chr 152
lc 0,23

COMMENT