bc0026c3e1
Plus many new examples in "streams" chapter.
26 lines
710 B
XML
26 lines
710 B
XML
<?xml version="1.0" ?>
|
|
|
|
<project default="run">
|
|
<property name="chapter" value="control"/>
|
|
<property name="excludedfiles" value=""/>
|
|
<import file="../Ant-Common.xml"/>
|
|
<import file="../Ant-Clean.xml"/>
|
|
|
|
<target name="run" description="Compile and run" depends="build">
|
|
<jrun cls="BreakAndContinue" />
|
|
<jrun cls="CommaOperator" />
|
|
<jrun cls="ForInFloat" />
|
|
<jrun cls="ForInInt" />
|
|
<jrun cls="ForInString" />
|
|
<jrun cls="IfElse" />
|
|
<jrun cls="IfElse2" />
|
|
<jrun cls="LabeledFor" />
|
|
<jrun cls="LabeledWhile" />
|
|
<jrun cls="ListCharacters" />
|
|
<jrun cls="StringSwitch" />
|
|
<jrun cls="VowelsAndConsonants" />
|
|
<jrun cls="WhileTest" />
|
|
</target>
|
|
|
|
</project>
|