in reply to Re: Wanted: Perl 6 Programmers
in thread Wanted: Perl 6 Programmers
If you're not sure whether or not something should work, you can email either me (Sean) or perl6-internals with the question. If you want to make something work (i.e. by implementing it), I'm probably the one you should be bugging, since it will encourage me to document things.
If something clearly isn't implemented, a test-case is probably overkill -- just note it as "not implemented" and I'll put it somewhere in the docs. Hyper-assignment falls into this category. If something looks like it should work, but doesn't, then a test case is probably more appropriate.
Both of the tests you provide above look good overall, though I'm not sure about some of the cases in the second. For example,
is concatenating "--" with an array value. It should probably evaluate the array in scalar context (yielding its length) instead of turning into an empty array, but I don't think it will be expanded as in double-quoted string context.print "--" _ (@a ^_ "\t"); # BAD: --
/s
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Wanted: Perl 6 Programmers
by sharkey (Scribe) on Sep 06, 2002 at 13:56 UTC |