I want a programming language that supports German style composite words
You're viewing a single thread.
i will never forgive them for making the pointer type be T* instead of &T. most confusing thing ever.
T*
&T
don’t even get me started on C++ making T& the reference type and then making T&& be something other than the double reference type.
T&
T&&
I always thought T&& made sense as a movable reference. In order to move something, you need to change where the reference points, so conceptually you need a reference to the original reference to update it. (Effectively a double reference)