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