控制流 / 控制流中断 / "return"语句
没有任何返回值
具有返回值
func
printSomeData
(printAll
bool
) {
printMainData
()
if
!printAll {
return
}
printOtherData
()
}