Last active
January 29, 2025 20:27
-
-
Save ulisseshen/eae8072e876eccf7ec8e433ac04f12d3 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'); | |
await Future(() { | |
print('B'); | |
Future(() => print('C')); | |
Future.microtask(() => print('D')); | |
Future(() => print('E')); | |
print('F'); | |
}); | |
print('G'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment