Skip to content

Commit ed32b8e

Browse files
committed
P6 -> Raku
Slightly modernize, rename, make directly executable where supported. Part of #87
1 parent 60c4c09 commit ed32b8e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

bin/run-examples.pl renamed to bin/run-examples.raku

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
use v6;
1+
#!/usr/bin/env raku
22

33
=begin pod
44
55
=head1 NAME
66
7-
run-all-examples.pl - run all current Perl 6 examples
7+
run-all-examples.raku - run all current Raku examples
88
99
=head1 SYNOPSIS
1010
11-
$ perl6 run-all-examples.pl [--category=<category-name>]
11+
$ raku run-all-examples.pl [--category=<category-name>]
1212
1313
=head1 DESCRIPTION
1414
15-
A script to run all current Perl 6 examples in the C<perl6-examples>
15+
A script to run all current Raku examples in this
1616
repository and print their output. This is useful to check if the examples
1717
compile and/or work as expected.
1818
@@ -94,7 +94,7 @@ (:$category)
9494
next if grep $example-name, @examples-to-skip;
9595
say $example-dir ~ "/" ~ $example-name;
9696
chdir $example-dir;
97-
qqx{perl6 $example-name}.say;
97+
qqx{raku $example-name}.say;
9898
chdir $base-dir;
9999
}
100100
}

0 commit comments

Comments
 (0)