Cellua is a fast cell based script-able graphics engine for grid based graphics
- Download the latest binary
- Add it to PATH
- Clone cellua project template
- Run Cellua in the directory
window = Window.NewWindow(800, "Demo")
scene = window.GetScene()
ran = Random.NewRandomBool()
for x = 1, 799 do
    for y = 1, 799 do
        if ran.NextBoolean() then
            scene.SetColor(x, y, 255, 0, 0, 255)
        end
    end
    window.Clear()
    window.Display()
end
while window.IsOpen() do
    window.Clear()
    window.Display()
end
