Implement quasisyntax #468

Open
opened 2020-04-22 11:52:38 +00:00 by fare · 3 comments
fare commented 2020-04-22 11:52:38 +00:00 (Migrated from github.com)

Quasisyntax is yet unimplemented

Quasisyntax is yet unimplemented
corpix commented 2021-01-26 01:25:39 +00:00 (Migrated from github.com)

For those who could come here from google, at this moment I see this error when using quasisyntax:

(user)> (quasisyntax (unsyntax 1))
; Evaluation aborted on Syntax Error 
*** ERROR IN ? 
--- Syntax Error: Bad syntax 
... form:   . 
For those who could come here from google, at this moment I see this error when using `quasisyntax`: ```scheme (user)> (quasisyntax (unsyntax 1)) ; Evaluation aborted on Syntax Error *** ERROR IN ? --- Syntax Error: Bad syntax ... form: . ```
iacore commented 2024-03-08 14:41:02 +00:00 (Migrated from github.com)

what's quasisyntax

quasiquote?

> (quasiquote (unquote 1))
1
> (quasiquote (0 . (unquote 1)))
(0 . 1)

seems to work fine for me

what's quasisyntax quasiquote? ``` > (quasiquote (unquote 1)) 1 > (quasiquote (0 . (unquote 1))) (0 . 1) ``` seems to work fine for me
vyzo commented 2024-03-08 14:43:14 +00:00 (Migrated from github.com)

Quasisyntax is like quasiquote for AST processing, usually in the context of syntax-case.

Quasisyntax is like quasiquote for AST processing, usually in the context of syntax-case.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
mighty-gerbils/gerbil#468
No description provided.