mirror of
https://github.com/MorizzG/MLox.git
synced 2025-12-06 04:22:41 +00:00
31 lines
641 B
Lox
31 lines
641 B
Lox
|
|
class Zoo {
|
||
|
|
init() {
|
||
|
|
this.aarvark = 1;
|
||
|
|
this.baboon = 1;
|
||
|
|
this.cat = 1;
|
||
|
|
this.donkey = 1;
|
||
|
|
this.elephant = 1;
|
||
|
|
this.fox = 1;
|
||
|
|
}
|
||
|
|
ant() { return this.aarvark; }
|
||
|
|
banana() { return this.baboon; }
|
||
|
|
tuna() { return this.cat; }
|
||
|
|
hay() { return this.donkey; }
|
||
|
|
grass() { return this.elephant; }
|
||
|
|
mouse() { return this.fox; }
|
||
|
|
}
|
||
|
|
|
||
|
|
var zoo = Zoo();
|
||
|
|
var sum = 0;
|
||
|
|
var start = clock();
|
||
|
|
while (sum < 10000000) {
|
||
|
|
sum = sum + zoo.ant()
|
||
|
|
+ zoo.banana()
|
||
|
|
+ zoo.tuna()
|
||
|
|
+ zoo.hay()
|
||
|
|
+ zoo.grass()
|
||
|
|
+ zoo.mouse();
|
||
|
|
}
|
||
|
|
|
||
|
|
print sum;
|
||
|
|
print clock() - start;
|