lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> I'd be curious what a language has to do to be strongly typed by this
> definition....

Correct me if I'm wrong, but I always understood under strong types no
implicit//hidden typecasts.
Static typed is each variable gets its type at compile time. Dynamic
is what most script language have variable 'a' can be this or that.

With this all four squares dynamic+weak, dynamic+strong, static+weak
and static+stong can be filled with implementations.