9 lines
70 B
Plaintext
9 lines
70 B
Plaintext
|
|
fn main()
|
|
{
|
|
let a = 123;
|
|
let b: i32 = 321;
|
|
let c = b;
|
|
}
|
|
|