8 lines
154 B
Racket
8 lines
154 B
Racket
#lang typed/racket
|
|
(require racket/syntax)
|
|
|
|
(: f : -> (Syntaxof Any))
|
|
(define (f)
|
|
(with-syntax* ([(x ...) (list 1 2 3)])
|
|
#`(#,(syntax +) x ...)))
|
|
|