6 lines
62 B
Rust
6 lines
62 B
Rust
|
|
mod hello;
|
||
|
|
|
||
|
|
fn main() {
|
||
|
|
println!("{}", hello::hello());
|
||
|
|
}
|