// *** before: ***func Print(v interface{}) { fmt.Println(v)}// *** in version 1.18: ***func Print(v any) { fmt.Println(v)}