I'm using Eclipse's XQDT with Zorba 0.9.5. I'm trying to call the Zorba internal function zorba:print(...)
from within a FLWOR expression, but it gets ignored.
Specifically, I'm doing something like the following
import module namespace zorba =
"http://www.zorba-xquery.com/zorba/internal-functions";
for $l in list
let $bar := <hello />
let $foo := zorba:print($bar)
return (<nothing/>)
I can't put the print statement on its own because sequential statements aren't allowed in FLWOR exressions.
Any idea how I can get print
calls to work?