What makes a language strongly typed? I\'m looking for the most important aspects of a strongly typed language.
Yesterday I asked if PowerShell was strongly typed, b
People are confusing statically typed with strongly typed. Statically typed means "A string is a string is a string". Strongly typed means "Once you make this a string it will be treated as a string until it is reassigned as something different."
edit: I see someone else did point this out after all :)