6 lines
84 B
Rust
6 lines
84 B
Rust
fn main() {
|
|
let x: i32;
|
|
x = 42;
|
|
println!("Hello, world! This is X, {}", x);
|
|
}
|