blob: a3fb309c80b2e30b719ad55924540de60f4687a8 [file] [log] [blame]
package main
// List represents a singly-linked list that holds
// values of any type.
type List[T any] struct {
next *List[T]
val T
}
func main() {
}