Programming Language Typing
Posted in nerdliness on Aug 26th, 2008
The following comparison is from Dive into Python, by Mark Pilgram, Section 2.2.1: statically typed language: A language in which types are fixed at compile time. Most statically typed languages enforce this by requiring you to declare all variables with their datatypes before using them. Java and C are statically typed languages. dynamically typed language: [...]