Comments in XQuery?

Hello, is there a way to put comments inside an XQuery that queries Tamino?

The XQueries I construct are very long and comments would definitely help!

Tahnk you,

Peter Endisch

---------------------------------------
I’m a Zen Garden Maintenance Engineer
---------------------------------------

Hi,

Tamino supports the XQuery comments syntax described in the August 2002 draft. That means you have to enclose your comments by " {–" and “–}”.
The following XQuery statement gives an example:

for $b in input()/bib/book
{-- Where is the Where clause? --}
return $b

Regards,

Thorsten

Thank you Thorsten for your reply!

---------------------------------------
I’m a Zen Garden Maintenance Engineer
---------------------------------------