fork download
  1. (require srfi/41)
  2.  
  3. (define *calender-base*
  4. (stream-map (lambda (year)
  5. `(31 ,(if (or (zero? (modulo year 400))
  6. (and (zero? (modulo year 4))
  7. (not (zero? (modulo year 100)))))
  8. 29
  9. 28)
  10. 31 30 31 30 31 31 30 31 30 31))
  11. (stream-from 0)))
Success #stdin #stdout 0.48s 68512KB
stdin
Standard input is empty
stdout
Standard output is empty