Skip to content

Instantly share code, notes, and snippets.

@chooyan-eng
Created March 12, 2019 14:39
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 chooyan-eng/2aab0f76054a601741221b8426500b3e to your computer and use it in GitHub Desktop.
Save chooyan-eng/2aab0f76054a601741221b8426500b3e to your computer and use it in GitHub Desktop.
void main() {
var val = 10;
print(val);
val = "str"; // reassign value here is invalid
print(val);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment