Created
January 20, 2016 16:50
-
-
Save claytical/fc5991fd15bc2ec6bbae to your computer and use it in GitHub Desktop.
Logging
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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