本文介绍了谁能告诉我一些有关Scheme Lisp和FASL File的信息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有人可以告诉我有关此文件的信息吗?据我所知:

Can anyone tell me something about this file? As I know:


  1. Common-Lisp和Scheme都是lisp的方言。

  2. Common- Lisp源文件* .lisp可以编译为二进制文件* .fasl,其加载速度比源文件快。

Q:可以将Scheme源代码* .scm编译成某些二进制文件,该文件将比源代码更快地加载吗?

Q:Can the Scheme source code *.scm be compiled into some binary file that will be loaded faster than the source code?

预先感谢

joe

推荐答案

是的,如果您使用的Scheme实现具有该功能。

Yes, if the Scheme implementation you're using has that feature.


  • 在Racket中的FASL:

  • Chez计划中的FASL:

  • FASL in Racket: http://docs.racket-lang.org/reference/fasl.html
  • FASL in Chez Scheme: http://www.scheme.com/csug8/io.html#./io:h15

或者,您可以将您的代码编译为本地二进制文件...

Alternatively, you could compile your code to native binaries...

这篇关于谁能告诉我一些有关Scheme Lisp和FASL File的信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-13 21:31