func of() {
	os.OpenFile("name", os.O_APPEND|os.O_CREATE|os.O_RDWR, 0777)
	// 其中 0 代表八进制数字的前缀标记
	num := 10 + 010 + 0xf
	fmt.Println(num)
}