|
|
|
|
|
by array_key_first
185 days ago
|
|
He's probably conflating static and strong typing. C is statically typed, but weakly typed - you need to throw away types to do a bunch of run of the mill things. Python is dynamically typed, but strongly typed, where it will just fail if typed don't resolve. C# and C++ are both statically typed and strongly typed, although C# more than C++ in practice. |
|