'what does "lst := List[int]{}" mean in Go [duplicate]

Here is the part of Go code I am reading:

func main() {
    var m = map[int]string{1: "2", 2: "4", 4: "8"}

    fmt.Println("keys m:", MapKeys(m))

    _ = MapKeys[int, string](m)

    **lst := List[int]{}**
    lst.Push(10)
    lst.Push(13)
    lst.Push(23)
    fmt.Println("list:", lst.GetAll())
}

Anyone can explain what is code below defined ?

lst := List[int]{}
go


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source