Created
June 28, 2018 11:27
-
-
Save rinukkusu/222f1923329d1c9dbf71f507af8620fc to your computer and use it in GitHub Desktop.
inferred type
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() { | |
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