<project name="demo" default="say-hello" basedir=".">

  <target name="say-hello" description="Hello world">
  	<echo message="Hello, world"/>
  </target>
  
  <target name="more-work" description="More work?">
  	<echo message="Check your mails! ;o)"/>
  </target>
  
  <target name="got-it" description="Did you get it?">
  	<echo message="Think you got it..."/>
  </target>

</project>