问题
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!
回答1:
There is no date-time support in R5RS. The procedures current-seconds
, seconds->date
and date-month
should be available in the R5RS implementation of PLTRacket as extensions.
来源:https://stackoverflow.com/questions/4295727/how-to-get-system-date-in-r5rs-in-scheme-drracket