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