Skip to content

Instantly share code, notes, and snippets.

@osdrv
Created March 15, 2012 07:35
Show Gist options
  • Save osdrv/2042748 to your computer and use it in GitHub Desktop.
Save osdrv/2042748 to your computer and use it in GitHub Desktop.
Dart integers
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