Fix misplaced #@ tag macro

This commit is contained in:
Raymund Martinez 2020-03-10 19:56:43 +08:00
parent 6cc4c233b4
commit dd212cdd1b

View File

@ -105,7 +105,7 @@ in Hy::
(import cherrypy) (import cherrypy)
(defclass HelloWorld [] (defclass HelloWorld []
(#@ cherrypy.expose (defn index [self] #@(cherrypy.expose (defn index [self]
"Hello World!"))) "Hello World!")))
(cherrypy.quickstart (HelloWorld)) (cherrypy.quickstart (HelloWorld))