Source File: ex20/main.go

package main

import (
    "fmt"
)

type Node struct {
    Data any
    Next *Node
}

type LinkedList struct {
    Front *Node
    End *Node
}

func main() {
    list := new(LinkedList)
    fmt.Println("Your code goes here.", list.Front)
}