guile-user
[Top][All Lists]
Advanced

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

Re: Syntactic significance of dot


From: Marko Rauhamaa
Subject: Re: Syntactic significance of dot
Date: Tue, 23 Sep 2014 00:01:13 +0300
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (gnu/linux)

Richard Shann <address@hidden>:

> I've come across some (working) scheme code whose meaning I can't
> unravel. The problem is there is a "." character whose significance
> eludes me. The guile reference doesn't index this character, and I can
> only find references to it in writing literal pairs.

That's what it's for and nothing else, including in your example.

    (a b . c)

is equivalent to

    (a . (b . c))


Marko



reply via email to

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