Skip to content

Instantly share code, notes, and snippets.

@xin053
Created July 4, 2019 16:39
Show Gist options
  • Save xin053/797d8fb4beaa8888671da845e72728e5 to your computer and use it in GitHub Desktop.
Save xin053/797d8fb4beaa8888671da845e72728e5 to your computer and use it in GitHub Desktop.
[go 函数]go 函数 #go #函数
// 只有函数声明,没有函数体,表明函数以其他语言实现
func Sin(x float64) float //implemented in assembly language
// 可变参数
func sum(values...int) int {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment