In Go, an empty interface (interface{}) means “any type.”
In TypeScript, any serves the same purpose.

	var i interface{}

fmt.Print takes any number of arguments of type interface{}.