golang 三目運算的實現

```golang

// 三目運算的函數
func ternary(a bool, b, c bool) bool {
if a {
return b
}
return c
}
```
 
## 參考
 
[https://www.cnblogs.com/GetcharZp/p/15172602.html](https://www.cnblogs.com/GetcharZp/p/15172602.html)
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章