Is it possible in GoLang:
func funcWithDynamicTypeArgs(param notFixedType)
{
}
I want param let be int and string and map and any type.
In other words: is it possible in Go to declare and use function with dynamic type arguments?