class MyApp : precompile {
static method main : int ($args : string[]) {
my $total = 0;
for (my $i = 0; $i < 100000; $i++) {
$total += $i;
}
print "$total\n";
}
}