1. ホーム
  2. scheme

[解決済み] スキームの空リスト式

2022-01-31 08:20:46

質問

を使っています。 http://rextester.com/runcode を使用して、スキームテストを行うことができます。

を実行すると

(define x (cons 3 null))
(write x)

があり ERROR: Unbound variable: null .

上記のコンテキストで、空のリストを参照するにはどうしたらよいでしょうか?

どのように解決するのですか?

(define x (cons 3 '()))
(write x)

別の方法として null を最初に指定します。

(define null '())
(define x (cons 3 null))
(write x)