about summary refs log tree commit diff
path: root/nix/buildTypedGo/example/main.go2
package main

import (
	"fmt"
)

func Print(type T)(s []T) {
	for _, v := range s {
		fmt.Print(v)
	}
}

func main() {
	Print([]string{"Hello, ", "TVL\n"})
}