| I'm pretty new to scheme, but am grasping most of Arc so far. I'm starting to understand macros and where and when to use them, and going through the Arc tutorial helped me with that. The exciting thing for me about Arc is how easy it was to get a web server up and serving web pages, it was really easy. The thing that I'm not understanding is the link function that uses the tag macro in html.arc. I'm probably missing something, but it seems like it should be used like: arc> (link "A Link" "somepage.html")
but this is what it produces: <a href="somepage.html">A Link</a>"</"
Notice the extra trailing "</". Now I'm trying to go through html.arc and find what exactly is going on here but I'm obviously missing something or it is a bug. |