Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将哈希函数导入惰性 Racket?
到目前为止,我有以下内容:
#lang lazy (require (only-in racket/base hash hash-set))
我收到以下错误:
only-in: bad module path in: (only-in racket/base hash hash-set)
我哪里错了?正确的模块路径是什么?
你知道你用的是什么版本的球拍吗?我无法在 Racket 5.3 下重现您的错误:当我尝试时,您的代码符合您的预期。
解释一下,Lazy Racket 的实现是一个旧的实现,基于现在是一种兼容语言的“MzScheme”。在 v5.3 中,它进行了现代化改造,更符合通常的racket语言。
racket