6
6
7
7
= head1 SYNOPSIS
8
8
9
+ = for code :skip-test
9
10
perl6 [switches] [--] [programfile] [arguments]
10
11
11
12
= head1 DESCRIPTION
@@ -14,7 +15,7 @@ With no arguments, enters a REPL. With a C<[programfile]> or the C<-e>
14
15
option, compiles the given program and, by default, also executes the
15
16
compiled code.
16
17
17
- = begin code
18
+ = begin code :skip-test
18
19
19
20
Option Purpose
20
21
====== ==============================================
@@ -50,7 +51,7 @@ compiled code.
50
51
Note that only boolean single-letter options may be bundled.
51
52
52
53
To modify the include path, you can set the PERL6LIB environment variable:
53
- = begin code
54
+ = begin code :skip-test
54
55
PERL6LIB="lib" perl6 example.pl
55
56
= end code
56
57
@@ -86,7 +87,7 @@ Other variables are listed in Rakudo's github wiki: L<https://github.com/rakudo/
86
87
87
88
= item C < RAKUDOLIB > , C < PERL6LIB > (I < Str > ; C < src/core/Inc.pm > )
88
89
89
- Appends a comma-delimited list of paths to C < @INC > . C < RAKUDOLIB > is evaluated first.
90
+ Appends a comma-delimited list of paths to C < @INC > . C < RAKUDOLIB > is evaluated first.
90
91
91
92
= defn C < RAKUDO_MODULE_DEBUG > (I < Bool > ; C < src/Perl6/ModuleLoader.pm > )
92
93
Causes the module loader to print debugging information to standard error.
@@ -166,13 +167,15 @@ semicolon-delimited list.
166
167
When set to a true value will cause timing information to be printed when
167
168
the test suite is running:
168
169
170
+ = begin code :skip-test
169
171
$ PERL6_TEST_TIMES=1 perl6 -MTest -e 'plan 2; is sleep(2), Nil; nok sleep(.5)'
170
172
1..2
171
173
# between two timestamps 1 microseconds
172
174
ok 1 -
173
175
# t=2000562
174
176
ok 2 -
175
177
# t=500388
178
+ = end code
176
179
177
180
The C < # between two timestamps > is printed when C < plan > is called and
178
181
indicates how long it takes
@@ -189,6 +192,7 @@ message will not be displayed and the first C<# t=> value will be a C<NaN>.
189
192
When set to a true value will cause the test suite to abort on first failure,
190
193
even if there are more tests to be run:
191
194
195
+ = for code :skip-test
192
196
$ PERL6_TEST_DIE_ON_FAIL=1 perl6 t/test-filename.t
193
197
194
198
= defn C < RAKUDO_OPTIMIZER_DEBUG > , (I < Bool > ; C < src/Perl6/Optimizer.nqp > )
0 commit comments