From 0a362a2120ae5e9891cddb711bed040b373477e0 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Thu, 9 May 2013 15:40:32 -0500 Subject: [PATCH] oh yeah, make this a clojure syntax block in the docs --- docs/tutorial.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/tutorial.rst b/docs/tutorial.rst index 3e83834..24e8ec6 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -418,6 +418,8 @@ Hy also supports **args and **kwargs. In Python:: The Hy equivalent: +.. code-block:: clj + (defn some_func [foo bar &rest args &kwargs kwargs] (import pprint) (pprint.pprint (, foo bar args kwargs)))