2012-03-21 14:42:34 -05:00
|
|
|
mod kitties {
|
|
|
|
|
2012-08-15 20:46:55 -05:00
|
|
|
struct cat {
|
2012-03-21 14:42:34 -05:00
|
|
|
priv {
|
2012-03-26 20:35:18 -05:00
|
|
|
let mut meows : uint;
|
2012-03-21 14:42:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
let how_hungry : int;
|
|
|
|
|
2012-03-29 14:21:13 -05:00
|
|
|
new(in_x : uint, in_y : int) { self.meows = in_x; self.how_hungry = in_y; }
|
2012-03-21 14:42:34 -05:00
|
|
|
|
|
|
|
fn speak() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|