[][src]Function tao_of_rust::ch07::title

pub fn title()

Examples

Basic usage:

pub fn title(){
  println!("第7章:{}", "结构化编程");
}
title();Run