Skip to content

Instantly share code, notes, and snippets.

@claytical
Created January 20, 2016 16:50
Show Gist options
  • Save claytical/fc5991fd15bc2ec6bbae to your computer and use it in GitHub Desktop.
Save claytical/fc5991fd15bc2ec6bbae to your computer and use it in GitHub Desktop.
Logging
var something = "Hello";
function setup() {
createCanvas(400,400);
something = something + " World";
console.log(something);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment