Skip to content

Instantly share code, notes, and snippets.

@yjbanov
Created October 8, 2024 00:05
Show Gist options
  • Save yjbanov/e41c571ca6149f4bda8833b784ea429b to your computer and use it in GitHub Desktop.
Save yjbanov/e41c571ca6149f4bda8833b784ea429b to your computer and use it in GitHub Desktop.
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