Skip to content

Instantly share code, notes, and snippets.

@snadrus
Created May 25, 2015 19:54
Show Gist options
  • Save snadrus/78e84f04d0e6346f0d78 to your computer and use it in GitHub Desktop.
Save snadrus/78e84f04d0e6346f0d78 to your computer and use it in GitHub Desktop.
GoLang 1-line ternary: https://play.golang.org/p/5eAJKhWYcR
package main
import "fmt"
func main() {
a := 1
b := 2
max := map[bool]int{true: a, false: b}[a > b]
fmt.Println(max)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment