Created
March 15, 2012 07:35
-
-
Save osdrv/2042748 to your computer and use it in GitHub Desktop.
Dart integers
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
Integer a = "asdf"; | |
print( a is Integer ); | |
a += 1; | |
print( a is Integer ); | |
print( a / 10 ); // NoSuchMethodException |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment