blob: 29f0b9f864680138fb4f125f067086564e4b19f6 [file] [log] [blame]
// 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})
}