Created
October 20, 2021 08:48
-
-
Save tkreuder/57f6b4a8bd06b184c60e20fc1f2dcfcd 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
void main() { | |
var myDouble = double.parse('123.45'); | |
assert(myDouble is double); | |
print(myDouble); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment