-
plt friends: broadly speaking, is there any syntactic justification for a
newkeyword? any reason that invoking a type could not signal the same thing? i.e. x = new SomeType(y, z) vs x = SomeType(y, z) doesnewin the first convey anything that the second does not? -
i notice that Julia and GLSL do not have
newkeywords. in older unmanaged languages it replaced e.g.malloc. javascript needs it because theres so little information in its type system, but i wonder how much ofnew's modern use is historic convention.
