File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- use v6 ;
1
+ # !/usr/bin/env raku
2
2
3
3
= begin pod
4
4
5
5
= head1 NAME
6
6
7
- run-all-examples.pl - run all current Perl 6 examples
7
+ run-all-examples.raku - run all current Raku examples
8
8
9
9
= head1 SYNOPSIS
10
10
11
- $ perl6 run-all-examples.pl [--category=<category-name>]
11
+ $ raku run-all-examples.pl [--category=<category-name>]
12
12
13
13
= head1 DESCRIPTION
14
14
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
16
16
repository and print their output. This is useful to check if the examples
17
17
compile and/or work as expected.
18
18
@@ -94,7 +94,7 @@ (:$category)
94
94
next if grep $ example-name , @ examples-to-skip ;
95
95
say $ example-dir ~ " /" ~ $ example-name ;
96
96
chdir $ example-dir ;
97
- qqx { perl6 $ example-name} . say ;
97
+ qqx { raku $ example-name} . say ;
98
98
chdir $ base-dir ;
99
99
}
100
100
}
You can’t perform that action at this time.
0 commit comments