4 lines
74 B
Rust
4 lines
74 B
Rust
pub fn main() {
|
|
let x: &'static str = "foo";
|
|
println!("{}", x);
|
|
}
|