[][src]Function tao_of_rust::ch08::title

pub fn title()

Examples

Basic usage:

pub fn title(){
  println!("第8章:{}", "字符串与集合");
}
title();Run