[][src]Function tao_of_rust::ch11::title

pub fn title()

Examples

Basic usage:

pub fn title(){
  println!("第11章:{}", "安全并发");
}
title();Run