Rust-03 Function

本文最后更新于:2 年前

Function

Rust 和 C/C++一样必须有一个名称为 main 的函数,作为程序的入口,Rust 的函数使用关键字fn声明。Rust 约定使用snake case的代码风格命名 function 和 variable 的名称。

例子

1
2
3
4
5
6
fn main() {
another_function();
}
fn another_function() {
println!("Another function.");
}

Rust-03 Function
https://trickyrat.github.io/2020/10/26/Rust-03 Function/
作者
trickyrat
发布于
2020年10月26日
许可协议