<pre class="brush:xquery">
element node { namespace pref { 'http://url.org/' } }
</pre>
==String Concatenations==
{{Mark|Introduced with Version 7.0:}} Two vertical bars <code>||</code> (also names ''pipe characters'') can be used to concatenate two strings. This operator is a shortcut for the {{Mono|ft:contains()}} function.
<pre class="brush:xquery">
'Hello' || ' ' || 'Universe'
</pre>