  
<project basedir="." default="hello">

   <property environment="env"/>

   <target name="hello">
         
      <echo message="Hello from spmeesseman"/>
      <echo message="Your path is:"/>
      <echo message="${env.Path}"/>

   </target>
   
</project>

