Name: Anonymous 2018-01-10 13:47
(define-syntax toaster
(lambda (stx)
(syntax-case stx ()
[(_ x) #'"toasted something"]
[(_) #'"toasted nothing"]
[_ #'"this is a toaster"])))
(display toaster)
(newline)
(display (toaster))
(newline)
(display (toaster a))
(newline)
Scheme wins again.