trpl-zh-cn/listings/ch03-common-programming-concepts/no-listing-16-functions/src/main.rs
2022-02-06 16:43:51 +08:00

10 lines
132 B
Rust
Executable File

fn main() {
println!("Hello, world!");
another_function();
}
fn another_function() {
println!("Another function.");
}