在定義多個參數時,Go 還有另一種簡寫的方式:
var ( a = 5 b = 10 c = 15 )
使用關鍵字 var(或 const),後面接著一對小括號,每一行定義一個變數。
Last updated 2 years ago