From: Kevin Ryde <user42@zip.com.au>
Subject: doc expression syntax, quoting
Date: Mon, 16 Feb 2004 08:12:51 +1000 [thread overview]
Message-ID: <873c9c0z6k.fsf@zip.com.au> (raw)
This is some words to propose for the currently empty Expression
Syntax section of the manual. In particular it describes quote and
quasiquote, which don't otherwise appear in the manual.
Expression Syntax
=================
An expression to be evaluated takes one of the following forms.
- syntax: <symbol>
A symbol is evaluated by dereferencing. A binding of that symbol
is sought and the value there used. For example,
(define x 123)
x => 123
- syntax: (proc [args ...])
A parenthesised expression is a function call. PROC and each
argument are evaluated, then the function (which PROC evaluated
to) is called with those arguments.
The order in which PROC and the arguments are evaluated is
unspecified, so be careful when using expressions with side
effects.
(max 1 2 3) => 3
(define (get-some-proc) min)
((get-some-proc) 1 2 3) => 1
The same sort of parenthesised form is used for a macro invocation,
but in that case the the macro is applied before evaluating the
arguments. See the descriptions of macros for more on this (*note
Macros::, and *note Syntax Rules::).
- syntax: <constant>
Number, string, character and boolean constants evaluate "to
themselves", so can appear as literals.
123 => 123
99.9 => 99.9
"hello" => "hello"
#\z => #\z
#t => #t
Note that an application must not attempt to modify literal
strings, since they may be in read-only memory.
- syntax: quote data
- syntax: ' data
Quoting is used to obtain a literal symbol (instead of a variable
reference), a literal list (instead of a function call), or a
literal vector. ' is simply a shorthand for a `quote' form. For
example,
'x => x
'(1 2 3) => (1 2 3)
'#(1 (2 3) 4) => #(1 (2 3) 4)
(quote x) => x
(quote (1 2 3)) => (1 2 3)
(quote #(1 (2 3) 4)) => #(1 (2 3) 4)
Note that an application must not attempt to modify literal lists
or vectors obtained from a `quote' form, since they may be in
read-only memory.
- syntax: quasiquote data
- syntax: ` data
Backquote quasi-quotation is like `quote', but selected
sub-expressions are evaluated. This is a convenient way to
construct a list or vector structure most of which is constant,
but at certain points should have expressions substituted.
The same effect can always be had with suitable `list', `cons' or
`vector' calls, but quasi-quoting is often easier.
- syntax: unquote expr
- syntax: , expr
Within the quasiquote DATA, `unquote' or `,' indicates an
expression to be evaluated and inserted. The comma syntax `,'
is simply a shorthand for an `unquote' form. For example,
`(1 2 ,(* 9 9) 3 4) => (1 2 81 3 4)
`(1 (unquote (+ 1 1)) 3) => (1 2 3)
`#(1 ,(/ 12 2)) => #(1 6)
- syntax: unquote-splicing expr
- syntax: , expr
Within the quasiquote DATA, `unquote-splicing' or `,@'
indicates an expression to be evaluated and the elements of
the returned list inserted. EXPR must evaluate to a list.
The "at-comma" syntax `,@' is simply a shorthand for an
`unquote-splicing' form.
(define x '(2 3))
`(1 ,@x 4) => (1 2 3 4)
`(1 (unquote-splicing (map 1+ x))) => (1 3 4)
`#(9 ,@x 9) => #(9 2 3 9)
Notice `,@' differs from plain `,' in the way one level of
nesting is stripped. For `,@' the elements of a returned list
are inserted, whereas with `,' it would be the list itself
inserted.
_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-devel
next reply other threads:[~2004-02-15 22:12 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-02-15 22:12 Kevin Ryde [this message]
2004-02-16 20:08 ` doc expression syntax, quoting Neil Jerram
2004-02-18 0:37 ` Kevin Ryde
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/guile/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=873c9c0z6k.fsf@zip.com.au \
--to=user42@zip.com.au \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).