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