[EMAIL PROTECTED] writes:
: We already have plenty of statements with implied semicolons:
: 
:       print "foo";
:       for @list {}
:       print "bar";

Yes, we do, and I'm trying to figure out how to write a prototype for
one of those.  :-) / 2

: I'd have expected:
: 
:          print (1, 2, 3, ...) or die;
: 
: to print
: 
:       12345678910111213141516171819202122232425262728etc

If you're into dwimmery, you could make all of these work, too:

    print (1, 2, 4, ...)
    print (1, 4, 9, 16, 25, ...)
    print (1, 1, 2, 3, 5, ...)
    print ('a', 'b', 'c', ...)
    print (3, 1, 4, 1, 5, 9, 6, 2, 5, ...)

: BTW, I propose the this new operator be pronounced "yadda yadda yadda". :-)

If you want to save the world, come up with a better way to say "www".
(And make it stick...)

Larry

Reply via email to