Zorba (XQuery) - using print functions

AdarsH

New Member
I'm using Eclipse's XQDT with Zorba 0.9.5. I'm trying to call the Zorba internal function \[code\]zorba:print(...)\[/code\] from within a FLWOR expression, but it gets ignored.Specifically, I'm doing something like the following\[code\]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/>)\[/code\]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 \[code\]print\[/code\] calls to work?
 
Top