Skip to content

Commit ab5de74

Browse files
committed
Remove implementation notes obsoleted by 2015.11
Tested with IRC evalbot Rakudo 2015.11.505.ge.52617.c.
1 parent c99887d commit ab5de74

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

doc/Language/control.pod

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -256,9 +256,6 @@ two differences C<unless> works the same as L<if>:
256256
my $c = 0; say (1, (unless 0 { $c += 42; 2; }), 3, $c); #-> says "1 2 3 42"
257257
my $c = 0; say (1, (unless 1 { $c += 42; 2; }), 3, $c); #-> says "1 3 0"
258258
259-
Implementation note: Currently, Rakudo will say "1 Nil 3 0" for the last
260-
example because it is not caught up to this part of the design yet.
261-
262259
=head3 X<with, orwith, without|control flow,with orwith without>
263260
264261
The C<with> statement is like C<if> but tests for definedness rather than

0 commit comments

Comments
 (0)