Skip to content

Instantly share code, notes, and snippets.

@elmcrest
Last active April 23, 2019 13:16
Show Gist options
  • Save elmcrest/3c5e7f9c2e10aa2700520a18bdcd152d to your computer and use it in GitHub Desktop.
Save elmcrest/3c5e7f9c2e10aa2700520a18bdcd152d to your computer and use it in GitHub Desktop.
dart operator overloading
void main() {
for (int i = 0; i < 5; i++) {
print('hello ${i + 1} times to India.');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment