2009-12-21 11:41:45 -05:00
|
|
|
(function(){
|
2010-02-21 11:45:03 -05:00
|
|
|
var _a, lyrics, num;
|
2010-01-17 18:33:31 -05:00
|
|
|
// Econ 101
|
2010-01-13 23:24:45 -05:00
|
|
|
if (this.studying_economics) {
|
|
|
|
while (supply > demand) {
|
|
|
|
buy();
|
|
|
|
}
|
|
|
|
while (supply < demand) {
|
|
|
|
sell();
|
|
|
|
}
|
2009-12-21 11:41:45 -05:00
|
|
|
}
|
2010-01-17 18:33:31 -05:00
|
|
|
// Nursery Rhyme
|
2010-01-13 23:24:45 -05:00
|
|
|
num = 6;
|
|
|
|
lyrics = (function() {
|
2010-02-21 11:45:03 -05:00
|
|
|
_a = [];
|
2010-01-13 23:24:45 -05:00
|
|
|
while (num -= 1) {
|
2010-02-21 11:45:03 -05:00
|
|
|
_a.push(num + " little monkeys, jumping on the bed. \
|
2010-01-13 23:24:45 -05:00
|
|
|
One fell out and bumped his head.");
|
|
|
|
}
|
2010-02-21 11:45:03 -05:00
|
|
|
return _a;
|
2010-01-25 00:14:00 -05:00
|
|
|
}).call(this);
|
2009-12-21 11:41:45 -05:00
|
|
|
})();
|