Skip to content

Instantly share code, notes, and snippets.

@dicenull
Created March 14, 2024 08:16
Show Gist options
  • Save dicenull/6a8981a12d678632f14c8e0a08d2c612 to your computer and use it in GitHub Desktop.
Save dicenull/6a8981a12d678632f14c8e0a08d2c612 to your computer and use it in GitHub Desktop.
void main() {
final astronauts = 0;
try {
if (astronauts == 0) {
throw StateError('No astronauts.');
}
} catch (e) {
print(e);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment