Get First Value
Examples
Filter
package main
import (
"fmt"
)
func main() {
list := []string{"a", "b", "c"}
fmt.Println(list[0])
}
Last Run
:
a