Hi,
In message "language addition: automatic 'new'"
on 02/03/15, Vardhan Varma <vardhan.v / parsectech.com> writes:
| I wrote my first >1K ruby program over the week,
|and it occured to me, it would be great if
| Klass(param)
| be converted to
| Klass.new(param)
| Automagically ...
Hmm.. you are lazy enough to choose C(args) over C.new(args).
Don't worry, laziness is a virtue of a programmer.
But I'm afraid it conflicts with already existing methods like
Integer(), String(), and Array().
matz.