Skip to content

Instantly share code, notes, and snippets.

@rinukkusu
Created June 28, 2018 11:27
Show Gist options
  • Save rinukkusu/222f1923329d1c9dbf71f507af8620fc to your computer and use it in GitHub Desktop.
Save rinukkusu/222f1923329d1c9dbf71f507af8620fc to your computer and use it in GitHub Desktop.
inferred type
void main() {
List<int> list = new List();
list.add("c");
list.add(2);
print(list);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment