m4th.pro(gramming)

make and play math video games

manifesto


Play Games


Make your own games

let’s see some pico8 code

function _init()
-- initialize code
-- called once on program startup
end

function _update()
-- changes behavor based on pressing buttons
-- called once per update at 30fps
end

function _draw()
-- draws stuff to the screen
-- called once per visible frame
end