shithub: slug

ref: 70de7329ed0cdf8dac3e7e9126f13e5ed61d2c28
dir: /samples/pixels.lua/

View raw version
#!/bin/slug

function setup()
	size(255, 255)
	background(0)
	loadPixels()
	for y=1,254 do
		c = color(y, y, y)
		for x=1, 254 do
			pixels[x + width * y] = c
		end
	end
	updatePixels()
end

function draw()
	noLoop()
end