XtGem
.xt files are just plain text files containing Xtscript commands
For internal files they require no special headers
For external use the first line must be
#exportable
They are usually used for defining functions but they can contain any xtscript you require
#exportable
var $var=value
print $var
function my_function;$var=1
return $var
endfunction