Differences between version 2 and previous revision of DynamicTyping.
Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History
Newer page: | version 2 | Last edited on Sunday, February 16, 2003 1:08:47 am | by PerryLorier | Revert |
Older page: | version 1 | Last edited on Sunday, February 16, 2003 1:07:47 am | by PerryLorier | Revert |
@@ -1,7 +1,7 @@
!!!Dynamic Typing
-This is the opposite to StaticlyTyped
, where type checks are done at runtime. For instance [Python] is an example of a dynamically typed language, it allows you to pass any type to a function, however some internal functions can only take specific types.
+This is the opposite to StaticallyTyped
, where type checks are done at runtime. For instance [Python] is an example of a dynamically typed language, it allows you to pass any type to a function, however some internal functions can only take specific types.
for example:
def mul(a,b):
return a*b