ref: 20462b4b4afbc56235201903221a1fb15f14d605 dir: /samples/gaussian.lua/
#!/bin/slug function setup() size(400, 400) background(200) for y = 0, 399 do x = math.floor(randomGaussian() * 60) line(200, y, 200 + x, y) end end function draw() end