-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Currently dotted pairs are quoted as a list conianing the dot as an identifier. It
seems like Scheme expectes them to be quoted as a pair instead. It could be
that we need to add support for pairs as a new literal type too.
Given:
'(a . b)We expect it to become:
(a . b) ; ~> (pair (quote a) (quote b))But in fact it becomes:
(a |.| b) ; ~> (list (quote a) (quote |.|) (quote b))Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working