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::