[][src]Function tao_of_rust::ch02::title

pub fn title()

Examples

Basic usage:

pub fn title(){
  println!("第2章:{}", "语言精要");
}
title();Run