注释与文档
注释
// I love Rust, but I hate Rustc./* W-Cat 是个大胖猫,N-Cat 是个高度近视猫。*/文档
//! # The first line
//! The second line
/// Adds one to the number given.
///
/// # Examples
///
/// /// let five = 5;
///
/// assert_eq!(6, add_one(5));
/// # fn add_one(x: i32) -> i32 {
/// # x + 1
/// # }
/// ```
fn add_one(x: i32) -> i32 {
x + 1
}生成 html 文档
Last updated