Created
April 24, 2022 06:48
-
-
Save hotdang-ca/75a164683e3bebe77a6b84eeb5204030 to your computer and use it in GitHub Desktop.
Dart has Labels!!
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() { | |
ten:while(true) { | |
print('Hello world!'); | |
continue ten; | |
break; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment