Pyrogue
micropython interpreter with a minimalist roguelike library
Ready
Run
Console
Fullscreen
import rl WIDTH, HEIGHT = 320, 240 rl.init_display('test', WIDTH, HEIGHT) def update(event): color = rl.random_color() rl.fill_rect(rl.random_int(0, WIDTH - 1), rl.random_int(0, HEIGHT - 1), 50, 50, color) rl.run(update)
Share
Docs
Assets
Github
Share script
×
URL copied to clipboard.