"Guido van Rossum" <[EMAIL PROTECTED]> wrote:
> > given the precedent of type inferenced languages
> > that use a separate line for optional type information
> 
> Can you show us an example or two?

C/C++ probably doesn't count, being that type information is required,
but one can relocate type information to other lines...

void
cross(inp1, inp2, inpl1, inpl2, outp)
double* inp1;
double* inp2;
long    inpl1;
long    inpl2;
double* outp
{
    /* body goes here */
}


 - Josisha

_______________________________________________
Python-3000 mailing list
Python-3000@python.org
http://mail.python.org/mailman/listinfo/python-3000
Unsubscribe: 
http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com

Reply via email to