> Also you can send functions and code over the wire as well to run. Making some very interesting things that are just impossible to do in other languages.
Well, you could do this in any language that has 'eval' really, which includes most dynamic languages. Unless you're referring to something else?
Erlang provides location transparency for processes, meaning that you can send a message to a Pid (process identifier) as if it were running locally, when in fact it's running on another VM on another machine.
Well, you could do this in any language that has 'eval' really, which includes most dynamic languages. Unless you're referring to something else?