谁能告诉我一些有关Scheme Common-Lisp 和FASL 文件的信息
谁能告诉我有关该文件的信息吗?据我所知:
- Common-Lisp和Scheme都是Lisp的方言。
- Common-Lisp 源文件 *.lisp 可以编译成二进制文件 *.fasl,其加载速度比源文件更快。
Q:Scheme源代码*.scm可以编译成比源代码加载速度更快的二进制文件吗?
预先感谢,
乔
Can anyone tell me something about this file? As I know:
- Common-Lisp and Scheme are both dialects of lisp.
- Common-Lisp source file *.lisp can be compiled into binary file *.fasl which can be loaded faster than the source file.
Q:Can the Scheme source code *.scm be compiled into some binary file that will be loaded faster than the source code?
Thanks in advance,
joe
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,如果您使用的方案实现具有该功能。
或者,您可以将代码编译为本机二进制文件...
Yes, if the Scheme implementation you're using has that feature.
Alternatively, you could compile your code to native binaries...