[][src]Function tao_of_rust::ch05::title

pub fn title()

Examples

Basic usage:

pub fn title(){
  println!("第5章:{}", "所有权系统");
}
title();Run