there's not too much to this sketch, but it's fun trying out rapid code sketching with the language now
code:
require("L5")
function setup()
size(1920,1280)
windowTitle("Flag Thing")
noStroke()
createPage()
frameRate(1)
end
function draw()
createPage()
end
function createPage()
background(random(255),random(255),random(255))
fill(random(255),random(255),random(255))
circle(width/2,height/2,2/3*height)
end