Skip to content

Instantly share code, notes, and snippets.

@claytical
Created January 20, 2016 16:53
Show Gist options
  • Save claytical/edf94686330d496c5951 to your computer and use it in GitHub Desktop.
Save claytical/edf94686330d496c5951 to your computer and use it in GitHub Desktop.
Logging Random
function setup() {
createCanvas(400,400);
}
function draw() {
console.log("Random Number Between 5 and 10: " + random(5,10));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment