8 lines
56 B
Plaintext
8 lines
56 B
Plaintext
|
//
|
||
|
|
||
|
fn main() {
|
||
|
let a = 5;
|
||
|
let b: &int = &a;
|
||
|
}
|
||
|
|