From 52292da6950ef29a62caafbb872006bb734b9ec6 Mon Sep 17 00:00:00 2001 From: Yoan Tournade Date: Sat, 9 Dec 2017 23:12:19 +0100 Subject: [PATCH 1/2] Update interop doc: print function is lower-case (A typo made use of Print function, which is not defined) --- docs/language/interop.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/language/interop.rst b/docs/language/interop.rst index 039d825..df34016 100644 --- a/docs/language/interop.rst +++ b/docs/language/interop.rst @@ -77,7 +77,7 @@ If you save the following in ``greetings.hy``: .. code-block:: clj (setv *this-will-be-in-caps-and-underscores* "See?") - (defn greet [name] (Print "hello from hy," name)) + (defn greet [name] (print "hello from hy," name)) Then you can use it directly from Python, by importing Hy before importing the module. In Python:: From 62fb35e09a622810857b224c9c461358cbbb1e6c Mon Sep 17 00:00:00 2001 From: Yoan Tournade Date: Sat, 9 Dec 2017 23:20:55 +0100 Subject: [PATCH 2/2] Update AUTHORS --- AUTHORS | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index 926eaf5..cf8ef5c 100644 --- a/AUTHORS +++ b/AUTHORS @@ -84,4 +84,5 @@ * Andrew Silva * Zaheer Soebhan * Rob Day -* Eric Kaschalk +* Eric Kaschalk +* Yoan Tournade