Last active
September 9, 2015 12:10
-
-
Save federico-pepe/0ab69c86228cae808329 to your computer and use it in GitHub Desktop.
Scopo delle variabili
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
| int circleX; // dichiarazione | |
| void setup() { | |
| size(400, 400); | |
| circleX = 100; // inizializzazione | |
| } | |
| void draw() { | |
| ellipse(circleX, 110, 50, 50); // utilizzo | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment