5 lines
70 B
Rust
5 lines
70 B
Rust
fn main(){println!("Hello, world!");}
|
|
|
|
fn add(a:i32,b:i32)->i32{
|
|
a+b
|
|
} |