如何在Scheme/DrRacket中获取R5Rs中的系统日期
在 DrRacket IDE 中,当语言设置为“Swindle”时,我能够通过以下方式获取系统日期:
(define currentMonth 0)
(let ((date (seconds->date (current-seconds))))
(set! currentMonth (date-month date))
)
现在,我需要在 R5Rs 中执行相同的操作,但不确定如何操作。我可以就此寻求您的建议/帮助吗?
谢谢!
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!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
R5RS 中没有日期时间支持。过程
current-seconds
、seconds->date
和date-month
应该可以在PLTRacket的R5RS实现中作为扩展使用。There is no date-time support in R5RS. The procedures
current-seconds
,seconds->date
anddate-month
should be available in the R5RS implementation of PLTRacket as extensions.