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