Sign in
go
/
website
/
5f31ab0a4d90318ae0bd84d9b0d5ecbc7480255a
/
.
/
_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() {
}