10 lines
80 B
Plaintext
10 lines
80 B
Plaintext
// expect: 456
|
|
|
|
fn main()
|
|
{
|
|
let v: i32 = 123;
|
|
v = 456;
|
|
print(v);
|
|
}
|
|
|