<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

	<!-- Defining the template for the root rule -->
	<xsl:template match="/">

			<!-- Display the contents of the greeting element -->
			<xsl:value-of select="/greetings/greeting"/>

	</xsl:template>

</xsl:stylesheet>

