1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
//! 第八章:字符串与集合
//!

/// # Examples
///
/// Basic usage:
///
/// ```
/// pub fn title(){
///   println!("第8章:{}", "字符串与集合");
/// }
/// title();
/// ```
pub fn title(){
    println!("第8章:{}", "字符串与集合");
}

pub mod bases;
pub mod strings;
pub mod vectors;
pub mod hashmaps;