6 lines
73 B
Rust
6 lines
73 B
Rust
|
const a: int = 1;
|
||
|
const b: int = a + 2;
|
||
|
|
||
|
fn main() {
|
||
|
assert b == 3;
|
||
|
}
|