blob: cb0170e787770b80df57ea156716c2dd06303717 [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 Print[T any](s []T) {
for _, v := range s {
fmt.Println(v)
}
}
func PrintInts(s []int) {
Print[int](s)
}
func main() {
PrintInts([]int{1, 2})
}