ada0f1471 ^
6279b0587 ^
1 2 3 4 5 6
7 8
9 10 11 12
13 14
15
# bug #2073 import sequtils import times # 1 proc f(n: int): DateTime = DateTime(year: n, month: mJan, monthday: 1) echo toSeq(2000 || 2015).map(f) # 2 echo toSeq(2000 || 2015).map(proc (n: int): DateTime = DateTime(year: n, month: mJan, monthday: 1) )