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