@jauntywunderkind420 @enkiv2 @byron
You'd *think* that since constructors are a pretty universal part of OOP, that every conceivable data type or structured message WOULD be an instance (sic) of
new foo(bar,baz)
BUT
that just gives you a local reference to an instance of foo
Once you've got that reference... how do you communicate it to another system? It's not a 'message' in any meaningful sense now. Messages can be 'sent'. Objects... are not designed to be 'sent'.
It feels incomplete.