Slice literals
A slice literal is like an array literal — just drop the length.
Array literal:
[3]bool{true, true, false}
Slice literal (creates the same array under the hood, then returns a slice pointing to it):
[]bool{true, true, false}
You can use any element type, including structs.