AdventOfCode2021/shared/Node.go

7 lines
64 B
Go
Raw Normal View History

2021-12-16 21:11:39 +00:00
package shared
type Node struct {
Value string
Next *Node
}