> All you really need is:
>
>     if ( specific_condition() ? detail() : general_condition() )


Oops! That's the Perl 5 version. In Perl 6, of course, it's:


if ( specific_condition() ?? detail() :: general_condition() )

Which means you *do* get to use the :: after all!
(Just not where you might have expected ;-)

Damian





Reply via email to