Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8d70ab5f477105786c0186abad9ab3167fd9b935 (plain) (blame)
1
2
3
4
5
6
7
<project name="input testing" default= "input test">
	<target name="input test">
		<input message="Enter for echo" addproperty= "inputTest">
		</input>
		<echo message="${inputTest}"/>
	</target>	
</project>

Back to the top