Skip to content

Instantly share code, notes, and snippets.

@hotdang-ca
Created April 24, 2022 06:48
Show Gist options
  • Save hotdang-ca/75a164683e3bebe77a6b84eeb5204030 to your computer and use it in GitHub Desktop.
Save hotdang-ca/75a164683e3bebe77a6b84eeb5204030 to your computer and use it in GitHub Desktop.
Dart has Labels!!
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