ref: ee5a2ea5ab003cd1a72c117c3d6635c9443a4aa6 dir: /samples/mouse.lua/
#!/bin/slug function setup() size(600, 600) end function draw() background(0) translate(width/2, height/2) stroke(255) strokeWidth(5) line(0, 0, mouseX, mouseY) end