Skip to content

Instantly share code, notes, and snippets.

@devoncarew
Created February 21, 2025 21:32
Show Gist options
  • Save devoncarew/13a0df257db2d20ed30a3b1e9586d9b9 to your computer and use it in GitHub Desktop.
Save devoncarew/13a0df257db2d20ed30a3b1e9586d9b9 to your computer and use it in GitHub Desktop.
import 'dart:core' hide Duration;
import 'dart:core' as core show Duration;
void main() {
final howLong = core.Duration(seconds: 1);
for (var i = 0; i < 10; i++) {
print('hello ${i + 1}; $howLong');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment