Source File: ex20b/main.go

package main

import "fmt"

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

    pointer := &(memory[1])

    a_fruit := *pointer
    fmt.Println("the fruit is", a_fruit)
}