From ec4607d644f130c0ceef26a862e58c36a4f1c8b9 Mon Sep 17 00:00:00 2001 From: Brendan Curran-Johnson Date: Wed, 12 Mar 2014 21:20:58 -0500 Subject: [PATCH] Quoting works Hy seems to support quoting. I'm not familiar enough with lisp/hy to say much more --- docs/tutorial.rst | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/tutorial.rst b/docs/tutorial.rst index b3e22db..315e2c4 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -199,14 +199,13 @@ Hy. Let's experiment with this in the hy interpreter:: => (, 1 2 3) (1, 2, 3) -(You may notice that at present, the common lisp method of quoting -things like so: +If you are familiar with other lisps, you may be interested that Hy +supports the Common Lisp method of quoting: .. code-block:: clj - '(1 2 3) - -does not work. Instead, use square brackets as above.) + => '(1 2 3) + (1L 2L 3L) You also have access to all the builtin types' nice methods::