Just learned that this is valid Go.
```
s := []string{0: "first", 1: "second", 2: "third"}
```
Composite Literals FTW.
```
s := []string{0: "first", 1: "second", 2: "third"}
```
Composite Literals FTW.
Comments