Perl6-Pugs
view release on metacpan or search on metacpan
t/01-sanity/05-sub.t view on Meta::CPAN
use v6-alpha;
# Checking that testing is sane: subroutines
say '1..4';
sub ok($num) {
say "ok $num";
}
ok(1);
ok 2;
my $counter = 2;
sub ok_auto {
++$counter;
say "ok $counter";
}
ok_auto();
ok_auto;
( run in 2.094 seconds using v1.01-cache-2.11-cpan-d80b1682f3f )