Arc Forumnew | comments | leaders | submitlogin
1 point by wfarr 5912 days ago | link | parent

Thanks a lot for the help.

Is there any particular reason why there's a random trailing "</" ?



8 points by cadaver 5912 days ago | link

The <div ... </div> is written to stdout; it's a side-effect, not the result of the expression. It is the trailing "</" that's the result of the expression, and therefore gets written to stdout after the expression's side-effects.

I don't think 'tag means to return "</" in particular. It's just that 'pr -- which is used to write the closing tag like so: (pr "</" ...) -- returns its first argument and 'tag returns the value that's returnd by 'pr.

-----

1 point by wfarr 5912 days ago | link

Thanks again!

-----