Created
February 6, 2018 20:16
-
-
Save chalin/0d934e197a5b12843c6aceed7855e9e0 to your computer and use it in GitHub Desktop.
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
main () { | |
List<dynamic> strings = ["not", "ints"]; | |
List<int> numbers = strings; // <- strong mode error? | |
for (var number in numbers) { | |
print(number - 10); // <— Boom! | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment