One function that takes an optional leading commaless arg:
sub print(handle? $FH, @)
or
Two functions differentiated by their prototypes
sub print(@);
sub print(handle,@);
I'm always forgetting the comma after the handlename in
C<open> statements because I learned "no comma after file handle names"
for C<print> We could rectify this situation by giving C<open> the
same header.
- RFC 168 (v1) Built-in functions should be functions Perl6 RFC Librarian
- Re: RFC 168 (v1) Built-in functions should be fun... Peter Scott
- Re: RFC 168 (v1) Built-in functions should be... Johan Vromans
- Re: RFC 168 (v1) Built-in functions should be fun... Damian Conway
- Re: RFC 168 (v1) Built-in functions should be... John Porter
- Re: RFC 168 (v1) Built-in functions shoul... Tom Christiansen
- Re: RFC 168 (v1) Built-in functions s... John Porter
- Re: RFC 168 (v1) Built-in functi... Tom Christiansen
- Re: RFC 168 (v1) Built-in functions shoul... Johan Vromans
- Re: RFC 168 (v1) Built-in functions should be... David L. Nicol
- Re: RFC 168 (v1) Built-in functions should be... Damian Conway
- Re: RFC 168 (v1) Built-in functions shoul... Tom Christiansen
- Re: RFC 168 (v1) Built-in functions s... John Porter
- Re: RFC 168 (v1) Built-in functions s... Piers Cawley
- Re: RFC 168 (v1) Built-in functi... Tom Christiansen
- Re: RFC 168 (v1) Built-in fu... Piers Cawley
- Re: RFC 168 (v1) Built-in fu... Damian Conway
- Re: RFC 168 (v1) Built-in functions shoul... Nathan Wiger
- Re: RFC 168 (v1) Built-in functions s... Tom Christiansen
- Re: RFC 168 (v1) Built-in functi... Nathan Wiger
