initial cammit
[qbasicapps.git] / tutorial / group1 / 10.bas
1 WIDTH 80, 50            ' set small text fonts\r
2 \r
3 \r
4 FOR a = 0 TO 31\r
5  \r
6   COLOR a               ' set text color, each color is defined by it's number\r
7                         ' colors from 16 to 31 are blinking.\r
8 \r
9   PRINT "This is text color nr."; a\r
10 \r
11 NEXT a\r
12 \r
13 \r