RosettaCodeData/Task/Long-year/Wren/long-year.wren
2024-03-06 22:25:12 -08:00

15 lines
411 B
Text

import "./date" for Date
var centuries = ["20th", "21st", "22nd"]
var starts = [1900, 2000, 2100]
for (i in 0...centuries.count) {
var longYears = []
System.print("\nLong years in the %(centuries[i]) century:")
for (j in starts[i]...starts[i]+100) {
var t = Date.new(j, 12, 28)
if (t.weekOfYear[1] == 53) {
longYears.add(j)
}
}
System.print(longYears)
}