Search code examples
schemesicpmit-scheme

Null value in Mit-Scheme?


Can anyone tell me what is the null value representation in mit-scheme? In the SICP book, it should be "nil" but it doesn't work. Thanks.


Solution

  • '() should work. Basically, nil in scheme is the empty list, so quoting an empty list gives you nil.