// Press ESC to run the code, Press ESC again to edit it. // Any line prefixed with // is a "comment," and is ignored. // All coordinates and measurements are in pixels. // Draw 100 random circles. loop(100, { fill_circle( random(0, width), // random x coordinate from 0 to width random(0, height), // random y coordinate from 0 to height random(10, 50), // random radius from 10 to 50 pixels random('gray') // random shade of gray ) })
run
edit