[][src]Function tao_of_rust::ch10::title

pub fn title()

Examples

Basic usage:

pub fn title(){
  println!("第10章:{}", "模块化开发");
}
title();Run