Created
June 11, 2020 22:37
-
-
Save nelsonic/bea94fb6dec3a69799f1f040135489a0 to your computer and use it in GitHub Desktop.
This will not compile as the a is defined as `int` cannot be reassigned to a `String`
This file contains 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
void main() { | |
var a = 42; | |
a = 'hello'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment