[][src]Function tao_of_rust::ch12::title

pub fn title()

Examples

Basic usage:

pub fn title(){
  println!("第12章:{}", "元编程");
}
title();Run