[][src]Function tao_of_rust::ch03::title

pub fn title()

Examples

Basic usage:

pub fn title(){
  println!("第3章:{}", "类型系统");
}
title();Run