trpl-zh-cn/listings/ch03-common-programming-concepts/no-listing-16-functions/src/main.rs

10 lines
132 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
println!("Hello, world!");
another_function();
}
fn another_function() {
println!("Another function.");
}