Difference between revisions of "Code Examples"
From GbdevWiki
(→Simple GBBasic 2.10 example) |
(→Simple GBBasic 2.10 example) |
||
Line 2: | Line 2: | ||
== Simple GBBasic 2.10 example == | == Simple GBBasic 2.10 example == | ||
− | + | <pre> | |
− | < | + | |
− | + | ||
10 rem Simple example | 10 rem Simple example | ||
20 for i=1 to 16 | 20 for i=1 to 16 | ||
Line 12: | Line 10: | ||
60 next i | 60 next i | ||
70 end | 70 end | ||
− | + | </pre> | |
− | </ | + |
Revision as of 14:47, 15 July 2010
Simple GBBasic 2.10 example
10 rem Simple example 20 for i=1 to 16 30 u=rnd(1)*16 40 print u 50 delay 20 60 next i 70 end