Update tutorial.rst

Changed case of function call in Macro
This commit is contained in:
Johnathon Sage 2015-11-14 15:48:39 -05:00
parent 4d5eafb442
commit e2614cc24a

View File

@ -514,7 +514,7 @@ the program starts executing normally. Very simple example:
=> (defmacro hello [person]
... `(print "Hello there," ~person))
=> (Hello "Tuukka")
=> (hello "Tuukka")
Hello there, Tuukka
The thing to notice here is that hello macro doesn't output anything on