Created
January 20, 2016 16:35
-
-
Save claytical/dcbdc400c7eef0bf7cb7 to your computer and use it in GitHub Desktop.
Adding
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 x = 0; | |
| function setup() { | |
| createCanvas(400,400); | |
| /* variables declared inside of a function are | |
| only available in that specific function. | |
| */ | |
| } | |
| function draw() { | |
| ellipse(x, 40, 10, 10); | |
| x = x + 1; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment