mirror of https://github.com/golang/go.git
28 lines
400 B
Plaintext
28 lines
400 B
Plaintext
// run
|
|
|
|
// Copyright 2020 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func Print1[T any](s []T) {
|
|
for _, v := range s {
|
|
fmt.Println(v)
|
|
}
|
|
}
|
|
|
|
func Print2[T any](s []T) {
|
|
Print1(T)(s)
|
|
}
|
|
|
|
func PrintInts(s []int) {
|
|
Print2(int)(s)
|
|
}
|
|
|
|
func main() {
|
|
PrintInts([]int{1, 2})
|
|
}
|