guile-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Syntactic significance of dot


From: Panicz Maciej Godek
Subject: Re: Syntactic significance of dot
Date: Mon, 22 Sep 2014 20:43:57 +0200

A little more errata :)
[sorry for the confusion]


This behaviour is coherent in the context of quasiquote:
(let ((a 1) (b 2) (c 3))
  `(,a ,b . ,c))
yields
(1 2 3)

Should be:

yields
(1 2 . 3) 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]