Last active
August 30, 2025 01:37
-
-
Save DamianVCechov/7a211e027f1a85544cb2e9fee6de35ae to your computer and use it in GitHub Desktop.
prdel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from kandinsky import * | |
| for x in range(320): | |
| for y in range(222): | |
| c = x & y | |
| if c: | |
| set_pixel(x, y, (0,0,c)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment