Just a tiny and fun bit of code
#1
Give it a spin in BAM :

(from page 422, Handbook of BASIC: for the IBM PC, XT, AT, PS/2, and compatibles)

Code: (Select All)
SCREEN 0
PRINT "ABCDEFG"
FOR J = 0 TO 7
LOCATE 2 + J, 1
FOR K = 0 TO 55
IF POINT(K,J) = 0 THEN PRINT " "; ELSE PRINT "*";
NEXT K
PRINT
NEXT J


   
Reply


Messages In This Thread
Just a tiny and fun bit of code - by CharlieJV - 06-15-2023, 02:30 AM
RE: Just a tiny and fun bit of code - by Jack - 06-15-2023, 10:29 AM
RE: Just a tiny and fun bit of code - by Jack - 06-15-2023, 01:56 PM



Users browsing this thread: 6 Guest(s)