From 767af90175c04f238775cb93144aa0985323084f Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Mon, 1 Apr 2013 07:32:11 -0500 Subject: [PATCH] python hash comments -> hy comments --- docs/language/index.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/language/index.rst b/docs/language/index.rst index bb7a721..7c9e5b4 100644 --- a/docs/language/index.rst +++ b/docs/language/index.rst @@ -66,11 +66,11 @@ exercise first in python:: Now let's try the same thing in hy:: (def result (- (/ (+ 1 3 88) 2) 8)) - # simplified to... + ; simplified to... (def result (- (/ 92 2) 8)) - # simplified to... + ; simplified to... (def result (- 46 8)) - # simplified to... + ; simplified to... (def result 38) As you probably guessed, this last expression with "def" means to