Created
January 31, 2025 21:00
-
-
Save ulisseshen/0a47c25b15910e4938d506a5a6e26e6c 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() async { | |
print('A'); | |
printsync(); | |
print('G'); | |
} | |
void printsync() async { | |
print('B'); | |
Future(() => print('C')); | |
print('D'); | |
await Future(() => print('E')); | |
print('F'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment