Skip to content

Instantly share code, notes, and snippets.

@federico-pepe
Last active September 30, 2015 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save federico-pepe/3344e8b4e00c79ddf23f to your computer and use it in GitHub Desktop.
Save federico-pepe/3344e8b4e00c79ddf23f to your computer and use it in GitHub Desktop.
Controlli condizionali
if(condizione) {
/* La porzione di codice qui inserita verrà eseguita
* esclusivamente se la condizione sopra indicata
* sarà true, quindi vera.
*/
} else {
/* Nel caso in cui la condizione sopra inserita NON
* sia vera, verrà eseguita questa porzione di codice
*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment