12 lines
164 B
Rust
12 lines
164 B
Rust
//! hello world
|
|
//! hello world
|
|
|
|
/// hello world
|
|
/// hello world
|
|
fn foo() {
|
|
// hello world
|
|
// hello world
|
|
let x = 3;
|
|
println!("x = {}", x);
|
|
}
|