Skip to content

Instantly share code, notes, and snippets.

@dalhaqq
Created September 4, 2023 03:15
Show Gist options
  • Save dalhaqq/b31b5f1fecf4eb43dd9cd996ec8cef1a to your computer and use it in GitHub Desktop.
Save dalhaqq/b31b5f1fecf4eb43dd9cd996ec8cef1a to your computer and use it in GitHub Desktop.
tugas-1
void main() {
try {
int a = 5~/0;
print(a);
} on UnsupportedError {
print("Operasi tidak didukung");
}
try {
int a = 5~/0;
print(a);
} catch (e) {
print(e);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment