[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Lua Strengths/Weaknesses and usage info
- From: Reuben Thomas <rrt@...>
- Date: Mon, 21 May 2001 10:14:23 +0100 (BST)
> By the way... some consider C and C++ to be weakly-typed. (See
> http://foldoc.doc.ic.ac.uk/foldoc/foldoc.cgi?weak+typing.) For our
> discussion the terms statically-typed and dynamically-typed may be more
> appropriate.
I think strongly-typed and weakly typed is more important here; I don't so
much care when my errors are caught as that they are caught at all,
without my having to write the type-checking code by hand. If you do
generic programming in C, which is weakly typed, then you have this
problem; C++ can be strongly typed if you use it right (as I understand
it).