Skip to content

Instantly share code, notes, and snippets.

@ulisseshen
Created January 31, 2025 21:00
Show Gist options
  • Save ulisseshen/0a47c25b15910e4938d506a5a6e26e6c to your computer and use it in GitHub Desktop.
Save ulisseshen/0a47c25b15910e4938d506a5a6e26e6c to your computer and use it in GitHub Desktop.
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