From 6bc1bee24ad6fefe222100a95801fd10850651c0 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Mon, 24 Feb 2014 09:54:29 -0600 Subject: [PATCH] Answer the question: is Hy a lisp flavored python or vice versa? The latter! --- docs/tutorial.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/tutorial.rst b/docs/tutorial.rst index 4acb72b..b3e22db 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -181,14 +181,14 @@ for python programmers... now you too can make use of macros' incredible power (just be careful to not aim them footward)! -Hy is python flavored lisp (or vice versa?) -=========================================== +Hy is a Lisp flavored Python +============================ -Hy converts to python's own abstract syntax tree, so you'll soon start +Hy converts to Python's own abstract syntax tree, so you'll soon start to find that all the familiar power of python is at your fingertips. -You have full access to python's data types and standard library in -hy. Let's experiment with this in the hy interpreter:: +You have full access to Python's data types and standard library in +Hy. Let's experiment with this in the hy interpreter:: => [1 2 3] [1, 2, 3]