11 lines
97 B
Rust
11 lines
97 B
Rust
#[crate_type = "lib"];
|
|
|
|
pub struct Fish {
|
|
x: int
|
|
}
|
|
|
|
pub impl Fish {
|
|
fn swim(&self) {}
|
|
}
|
|
|