rust/src/test/auxiliary/cci_class_5.rs

14 lines
215 B
Rust
Raw Normal View History

mod kitties {
class cat {
priv {
let mutable meows : uint;
fn nap() { uint::range(1u, 10000u) {|_i|}}
}
let how_hungry : int;
new(in_x : uint, in_y : int) { meows = in_x; how_hungry = in_y; }
}
}