Last active
April 30, 2017 17:48
-
-
Save zidenis/946a4c92c987c399fff5f22b9caf976b to your computer and use it in GitHub Desktop.
Dart inicializa toda nova variável alocada para null
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 variavelA = null; | |
String variavelB; | |
if (variavelA == variavelB) | |
print("Dart inicializa toda nova variável alocada para null"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment