14 lines
169 B
Rust
14 lines
169 B
Rust
|
mod kitties {
|
||
|
|
||
|
class cat {
|
||
|
priv {
|
||
|
let mutable meows : uint;
|
||
|
}
|
||
|
|
||
|
let how_hungry : int;
|
||
|
|
||
|
new(in_x : uint, in_y : int) { meows = in_x; how_hungry = in_y; }
|
||
|
}
|
||
|
|
||
|
}
|