1<?xml version="1.0"?>
2<xsl:stylesheet version="1.0"
3                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4                xmlns:math="http://exslt.org/math"
5                exclude-result-prefixes="math">
6
7<xsl:template match="values">
8   <result>
9      <xsl:text>Minimum: </xsl:text>
10      <xsl:value-of select="math:min(value)" />
11   </result>
12</xsl:template>
13
14</xsl:stylesheet>