Skip to content

Commit 8dc7704

Browse files
committed
skip more non-compiling code snippets
1 parent 02337ab commit 8dc7704

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/Language/math.pod6

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ parameter.
279279
How can we translate that into Perl 6? Well Math::Model bring some help
280280
with a very undestable way to do that, let's see it:
281281
282-
=begin code
282+
=begin code :skip-test<can't use>
283283
use Math::Model;
284284
285285
my $m = Math::Model.new(
@@ -363,7 +363,7 @@ captures => ('x'),
363363
364364
At this point our model is set. We need to run the simulation and render
365365
a cool plot about our results:
366-
=begin code
366+
=begin code :skip-test<Snippet for explanation purposes>
367367
$m.integrate(:from(0), :to(8), :min-resolution(0.5));
368368
$m.render-svg('population growth malthus.svg', :title('population growth'));
369369
=end code
@@ -394,7 +394,7 @@ where the constant g defines the growth rate and k is the carrying
394394
capacity.
395395
Modifying the above code we can simulate its behaviour in time:
396396
397-
=begin code
397+
=begin code :skip-test<can't use>
398398
use Math::Model;
399399
400400
my $m = Math::Model.new(
@@ -444,7 +444,7 @@ I<critical point>.
444444
445445
Our code would be:
446446
447-
=begin code
447+
=begin code :skip-test<can't use>
448448
use Math::Model;
449449
450450
my $m = Math::Model.new(

0 commit comments

Comments
 (0)