Sign in
go
/
website
/
7c64aef083d3daf923c06f2b5d6e46ce65842646
/
.
/
_content
/
tour
/
generics
/
list.go
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() {
}