Skip to content

Instantly share code, notes, and snippets.

@sausheong
Created May 16, 2022 05:23
Show Gist options
  • Save sausheong/74d4f2f00eb28f84fb59ea6a6751b74c to your computer and use it in GitHub Desktop.
Save sausheong/74d4f2f00eb28f84fb59ea6a6751b74c to your computer and use it in GitHub Desktop.
generics
func Add[T int | float64](a, b T) T {
return a + b
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment