Skip to content

Instantly share code, notes, and snippets.

@wytten
Last active December 14, 2015 01:19
Show Gist options
  • Save wytten/5005473 to your computer and use it in GitHub Desktop.
Save wytten/5005473 to your computer and use it in GitHub Desktop.
*.class
*~
.project
<project default="compile" basedir=".">
<property name="build.src" value="."/>
<property name="build.out" value="."/>
<target name="clean">
<delete>
<fileset dir="." includes="*.class"/>
</delete>
</target>
<target name="compile">
<javac srcdir="${build.src}" destdir="${build.out}" includeantruntime="false" />
</target>
<target name="run" depends="compile">
<java classpath="." className="MagicalLand" />
</target>
</project>
public class MagicalLand {
public static void main(String[] args) {
for (int i = 0; i < (Math.random() * 500) + 2; i++) {
if (Unicorn.pat()) {
System.out.println("UNICORN #1: PAT THIS UNICORN ONCE");
}
}
for (int i = 0; i < (Math.random() * 500) + 2; i++) {
if (Unicorn.pat()) {
System.out.println("UNICORN #2: PAT THIS UNICORN ONCE");
}
}
System.out.println("END OF PROGRAM");
}
}
public class Math {
public static double random() {
return (double) -1 / (double) 500;
}
}
public class Unicorn {
static boolean pat() {
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment