Source File: ex20a/main.go

package main

import "fmt"

func main() {
    memory := []string{
        "apple",
        "orange",
        "grape",
        "durian",
    }

    pointer := 1
    a_fruit := memory[pointer]
    fmt.Println("the fruit is", a_fruit)
}