> For the complete documentation index, see [llms.txt](https://go.netdpi.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://go.netdpi.net/variable/multi-vars.md).

# 04.04-定義多個變數

在定義多個參數時，Go 還有另一種簡寫的方式：

```go
var (
    a = 5
    b = 10
    c = 15
)
```

使用關鍵字 var（或 const），後面接著一對小括號，每一行定義一個變數。
