Skip to content

Instantly share code, notes, and snippets.

@chinmaygarde
Created July 1, 2015 18:02
Show Gist options
  • Save chinmaygarde/8c51df7540ab346fe19a to your computer and use it in GitHub Desktop.
Save chinmaygarde/8c51df7540ab346fe19a to your computer and use it in GitHub Desktop.
void main() {
print((10.0).runtimeType);
print((10.1).runtimeType);
print(double.MAX_FINITE);
print((1e3).runtimeType);
print((1.0e3).runtimeType);
print((1e-3).runtimeType);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment