husk-scheme icon indicating copy to clipboard operation
husk-scheme copied to clipboard

Hardcoded quote

Open SaitoAtsushi opened this issue 9 years ago • 0 comments

Non Imported name does not have special meaning.

I expect that following program print 2. But Husk print 1.

(import (except (scheme base) quote)
        (scheme write))

(define (quote x)
  (+ x 1))

(display (quote 1))

SaitoAtsushi avatar Aug 28 '16 17:08 SaitoAtsushi