Created
August 30, 2019 21:09
-
-
Save kwalrath/336c61f3163ca0d73385212f0f925a51 to your computer and use it in GitHub Desktop.
This file contains hidden or 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() { | |
| final myFuture = Future(() { | |
| print('Creating the future.'); // Prints second. | |
| return 12; | |
| }); | |
| print('Done with main().'); // Prints first. | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment