I need to choose a Scheme standard for an academic compiler implementation. It has to be simple enough, but should still be a powerful language. There are several (RRS–R7RS) standards of Scheme. Is there a public comparison of these reports for choosing? If no, which one would you recommend for a first compiler?
質問する
1183 次
2 に答える
10
標準ドキュメント自体の「言語の変更」セクションを使用して、それらを比較できます。公開 HTML バージョンのこれらのセクションへのリンクは次のとおりです。
于 2013-09-10T09:21:05.290 に答える
8
始めるのが簡単なのはR5RSサブセットであり、それを後で作成するのはそれほど難しくありませんR7RS-small
。R5RSはそれほど大きくないので、これだけでほぼダイジェストです。
さまざまなレポートの言語変更部分でそれらを比較できます。R7RS-small には、R5RS と R6RS の両方に対するリストもあります。
于 2013-09-10T07:59:23.920 に答える