ref: f343830a425bb978a6e78f50232f6ca947af72c2
dir: /samples/pushstyle.lua/
#!/bin/slug function setup() size(400, 400) end function draw() background(200) ellipse(0, 200, 132, 132) pushStyle() strokeWeight(40) fill(204, 153, 0) ellipse(200, 200, 132, 132) popStyle() ellipse(400, 200, 132, 132) end