2015-11-03 12:00:44 -08:00
|
|
|
<?xml version="1.0" ?>
|
|
|
|
|
|
|
|
<project default="run">
|
2015-11-14 16:18:05 -08:00
|
|
|
<property name="chapter" value="functional"/>
|
2015-11-03 12:00:44 -08:00
|
|
|
<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="CtorReference" />
|
2015-11-14 16:18:05 -08:00
|
|
|
<jrun cls="CurryingAndPartialFunctionApplication" />
|
2015-11-03 12:00:44 -08:00
|
|
|
<jrun cls="Factories" />
|
|
|
|
<jrun cls="Games" />
|
|
|
|
<jrun cls="LambdaExpressions" />
|
|
|
|
<jrun cls="MethodReferences" />
|
|
|
|
<jrun cls="RunnableMethodReference" />
|
2015-11-14 16:18:05 -08:00
|
|
|
<jrun cls="Strategize" />
|
2015-11-03 12:00:44 -08:00
|
|
|
<jrun cls="UnboundMethodReference" />
|
2015-11-14 16:18:05 -08:00
|
|
|
<jrun cls="functional.arr.ArgReturnReferences" dirpath="../functional/arr" />
|
2015-11-03 12:00:44 -08:00
|
|
|
</target>
|
|
|
|
|
|
|
|
</project>
|