Created
October 8, 2024 00:05
-
-
Save yjbanov/e41c571ca6149f4bda8833b784ea429b 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
void main() { | |
for (final day in List<int>.generate(365, (n) => n)) { | |
print('day $day, week ${day ~/ 7}, 28-day period ${day ~/ 28}'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment