Created
February 21, 2025 21:32
-
-
Save devoncarew/13a0df257db2d20ed30a3b1e9586d9b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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