What is dynamic type declaration of a variable in Go?

Technology CommunityCategory: GolangWhat is dynamic type declaration of a variable in Go?
VietMX Staff asked 3 years ago

dynamic type variable declaration requires compiler to interpret the type of variable based on value passed to it. Compiler don’t need a variable to have type statically as a necessary requirement.