const closure = () => {
  // 补全代码
  let num = 0
  return ()=>{
	num++
	return num
  }
}