7 lines
65 B
Go
7 lines
65 B
Go
package main
|
|
|
|
type Pair[A, B any] struct {
|
|
First A
|
|
Second B
|
|
}
|