There is no type. All will be one, all will be objectified.

Funny because it is true.
In Lisp (granddaddy of Perl,Python,PHP,ruby etc) all datatypes behind the scenes are an "object".
That is how you can convert from one data type to another.
A strongly typed language that does not appear to be a strongly typed language is OCAML.
The compiler figures out the "type" and compiles. So you as the programmer do not have to worry about that stupid shit.
That is how OCAML can speed that rivals C or in certain algos is even faster then "C".
Compare the size of code for an untyped language for an http client compared to its counterpart in delphi etc.
1/10 the size easy. Therefore much easier to spot your logic errors. Which will eliminate more logic errors which make u more secure.
Erlang is an untyped language.
Erlang has 99.9999999% uptime.
Also because it was designed for the telco industry it is also designed to be distributed.
Because of the way it is designed it is virtually impossible to crash (or if u can crash a node it recovers itself).
Also because it was designed as a "functional language" no deadlocks because of threads are possible, and it can do 100% CPU scaling.
You can read on erickson's site why they invented the language etc.
Downside of the language is erickson except for telcom use does not really care about the language.
So not many modules for it etc.
Anyway I am just curious, what "typed" language are u talking about that will eliminate these problems ?