2012-03-24 01:08:41 -05:00
|
|
|
mod kitties {
|
|
|
|
|
|
|
|
class cat {
|
|
|
|
priv {
|
2012-03-26 20:35:18 -05:00
|
|
|
let mut meows : uint;
|
2012-03-24 01:08:41 -05:00
|
|
|
fn meow() {
|
|
|
|
#error("Meow");
|
|
|
|
meows += 1u;
|
|
|
|
if meows % 5u == 0u {
|
|
|
|
how_hungry += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-28 00:08:48 -05:00
|
|
|
let mutable how_hungry : int;
|
|
|
|
let name : str;
|
2012-03-24 01:08:41 -05:00
|
|
|
|
2012-03-28 00:08:48 -05:00
|
|
|
new(in_x : uint, in_y : int, in_name: str)
|
|
|
|
{ meows = in_x; how_hungry = in_y; name = in_name; }
|
2012-03-24 01:08:41 -05:00
|
|
|
|
|
|
|
fn speak() { meow(); }
|
|
|
|
|
|
|
|
fn eat() -> bool {
|
|
|
|
if how_hungry > 0 {
|
|
|
|
#error("OM NOM NOM");
|
|
|
|
how_hungry -= 2;
|
|
|
|
ret true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
#error("Not hungry!");
|
|
|
|
ret false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|