Python slithers into Wesnoth
Posted Jan 16, 2009 10:31 UTC (Fri) by
eru (subscriber, #2753)
In reply to:
Python slithers into Wesnoth by ncm
Parent article:
Python slithers into Wesnoth
Automated testing is good for C++ code, too, of course, but for a dynamic language it's essential, if you hope to be able to make structural changes to the code later.
Does "dynamic" equate with runtime type checks? If not, consider the ML family of languages like SML and CAML, where you get the automatic memory management, pointerlessness and nice built-in dynamic data structures, but they still perform static type checking and compilation. In most cases you don't need to declare types for parameters and variables, because the compiler deduces them for you, eliminating the "less to type" argument.
(
Log in to post comments)