[][src]Function tao_of_rust::ch04::title

pub fn title()

Examples

Basic usage:

pub fn title(){
  println!("第4章:{}", "内存管理");
}
title();Run