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.
'() should work. Basically, nil in scheme is the empty list, so quoting an empty list gives you nil.
'()