<< |
>>
#7383 Dodano: 01-04-2014 13:05. Głosów: 100
The so called "yada yada" operator of Perl 6 heritage is a shortcut to mark unimplemented code:
if ($condition) { ... }
is the same as
if ($condition) { die "not yet implemented" }
<< |
>>
if ($condition) { ... }
is the same as
if ($condition) { die "not yet implemented" }