如何在Scheme/DrRacket中获取R5Rs中的系统日期

发布于 2024-10-05 12:55:17 字数 270 浏览 4 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少钕鈤記 2024-10-12 12:55:17

R5RS 中没有日期时间支持。过程current-secondsseconds->datedate-month应该可以在PLTRacket的R5RS实现中作为扩展使用。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文