Skip to content

Instantly share code, notes, and snippets.

@marianogonzalez
Created November 3, 2014 14:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marianogonzalez/78125f61d0d1779e4f25 to your computer and use it in GitHub Desktop.
Save marianogonzalez/78125f61d0d1779e4f25 to your computer and use it in GitHub Desktop.
<mxml:xquery-transformer>
<mxml:xquery-text>
<![CDATA[
xquery version "3.0";
declare variable $document external;
for $n in 1 to 10
group by $mod := $n mod 2
return
if ($mod = 0) then
<even>{$n}</even>
else
<odd>{$n}</odd>
]]>
</mxml:xquery-text>
</mxml:xquery-transformer>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment