AdventOfCode2021/shared/Node.go
2021-12-16 21:11:39 +00:00

7 lines
64 B
Go

package shared
type Node struct {
Value string
Next *Node
}