Skip to content

Instantly share code, notes, and snippets.

@sausheong
Created May 15, 2022 15:29
Show Gist options
  • Select an option

  • Save sausheong/e2b47f825af8290c134005af660dc964 to your computer and use it in GitHub Desktop.

Select an option

Save sausheong/e2b47f825af8290c134005af660dc964 to your computer and use it in GitHub Desktop.
generics
func AddInt(a, b int) int {
return a + b
}
func AddFloat(a, b float64) float64 {
return a + b
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment