<xsl:stylesheet 
  version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="html" encoding="UTF-8"/>

  <xsl:template match="/">
    <xsl:variable name="rand" 
      select="document('/cgi-bin/rand.pl?6')"/>
    <html><body>rand(6): <xsl:value-of select="$rand"/></body></html>
  </xsl:template>

</xsl:stylesheet>

