Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
11
Task/Munching-squares/QBasic/munching-squares.basic
Normal file
11
Task/Munching-squares/QBasic/munching-squares.basic
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
w = 254
|
||||
|
||||
SCREEN 13
|
||||
VIEW (0, 0)-(w / 2, w / 2), , 0
|
||||
|
||||
FOR x = 0 TO w
|
||||
FOR y = 0 TO w
|
||||
COLOR ((x XOR y) AND 255)
|
||||
PSET (x, y)
|
||||
NEXT y
|
||||
NEXT x
|
||||
Loading…
Add table
Add a link
Reference in a new issue