ref: 70de7329ed0cdf8dac3e7e9126f13e5ed61d2c28 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