[][src]Function tao_of_rust::ch06::title

pub fn title()

Examples

Basic usage:

pub fn title(){
  println!("第6章:{}", "函数、闭包和迭代器");
}
title();Run