10 lines
72 B
Plaintext
10 lines
72 B
Plaintext
|
|
fn main() -> i32
|
|
{
|
|
let a = 2;
|
|
let b = a + 5;
|
|
return b;
|
|
}
|
|
|
|
|