// Example 1: creating an empty list l := list.New() // Example 2: initializing a list with initial values l := list.New() l.PushBack(1) l.PushBack(2) l.PushBack(3)In example 1, we create a new empty list using the `New()` function provided by the `container/list` package. In example 2, we create a new list and initialize it with three elements using the `PushBack()` function. The `PushBack()` function adds an element to the end of the list. The package library for these examples is `container/list`.