1008945528
this has been replaced by `for`
19 lines
320 B
Rust
19 lines
320 B
Rust
struct Wizard {
|
|
spells: ~[&'static str]
|
|
}
|
|
|
|
impl Wizard {
|
|
pub fn cast(&mut self) {
|
|
for &spell in self.spells.iter() {
|
|
println(spell);
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
let mut harry = Wizard {
|
|
spells: ~[ "expelliarmus", "expecto patronum", "incendio" ]
|
|
};
|
|
harry.cast();
|
|
}
|