Skip to content

Instantly share code, notes, and snippets.

@grantseltzer
Created August 15, 2019 19:30
Show Gist options
  • Save grantseltzer/e28e08b42c0fcf58117dfe77ad6a3d17 to your computer and use it in GitHub Desktop.
Save grantseltzer/e28e08b42c0fcf58117dfe77ad6a3d17 to your computer and use it in GitHub Desktop.
package switchers
func SwitchFunction(a, b int, c *int) string {
switch *c {
case a:
return "a"
case b:
return "b"
default:
return "c"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment