Skip to content

Instantly share code, notes, and snippets.

@kureikei
Created March 1, 2015 21:46
Show Gist options
  • Save kureikei/16dd71e2d453a64112f3 to your computer and use it in GitHub Desktop.
Save kureikei/16dd71e2d453a64112f3 to your computer and use it in GitHub Desktop.
10 CLS
20 DIM S$(3)*24: DIM SS$(3)*24
30 S$(2) = "ポケコンモ"
40 S$(1) = "マダマダゲンエキ"
50 S$(0) = "ベ!シック"
60 LPRINT "I-------I"
70 FOR I=1 TO 24
80 FOR J=0 TO 2
90 SS$(J) = MID$(S$(J), I, 1)
100 IF SS$(J)="" THEN LET SS$(J)=" "
110 NEXT J
120 IF SS$(0)=" " AND SS$(1)=" " AND SS$(2)=" " THEN GOTO 150
130 LPRINT "I " +SS$(0)+" "+SS$(1)+" "+SS$(2)+ " I"
140 NEXT I
150 LPRINT "I-------I
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment