mirror of
https://github.com/jefferyjob/go-easy-utils.git
synced 2026-04-23 00:07:09 +08:00
14 lines
160 B
Go
14 lines
160 B
Go
package anyx
|
|
|
|
import "fmt"
|
|
|
|
func ExampleTernary() {
|
|
age := 15
|
|
res := Ternary(age < 18, "未成年", "成年")
|
|
|
|
fmt.Println(res)
|
|
|
|
// Output:
|
|
// 未成年
|
|
}
|