In DrRacket IDE, I was able to get the system date in the following manner when the language setting was 'Swindle':
(define currentMonth 0)
(let ((date (seconds->date (current-seconds))))
(set! currentMonth (date-month date))
)
Now, I need to do the same in R5Rs, but not sure how to. May I please seek your advise/help on this..
Thank you!