Munching squares: Difference between revisions

Content added Content deleted
Line 272: Line 272:
{{Out}}
{{Out}}
[https://imgur.com/a/pjl2Pd4 Screenshot.]
[https://imgur.com/a/pjl2Pd4 Screenshot.]

==={{header|Craft Basic}}===
<syntaxhighlight lang="basic">let s = 255

for y = 0 TO s

for x = 0 TO s

let r = x ~ y
fgcolor r, r * 2, r * 3
dot x, y

wait

next x

next y

end</syntaxhighlight>


==={{header|FreeBASIC}}===
==={{header|FreeBASIC}}===