Modules
Last updated
module namespace my = "http://www.example.com/my-module";
declare variable $my:variable := { "foo" : "bar" };
declare variable $my:n := 42;
declare function my:function($i as integer) { $i * $i };
import module namespace other= "http://www.example.com/my-module";
other:function($other:n)