1//! 第一章:Rust语言基础 2//! 3 4pub mod ctfe; 5pub mod expr; 6pub mod lexical; 7 8/// # Examples 9/// 10/// Basic usage: 11/// 12/// ``` 13/// println!("第1章:{}", "Rust语言基础"); 14/// 15/// ``` 16pub fn title() { 17 println!("第1章:{}", "Rust语言基础"); 18}