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