Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
5to6 1 while foo() generates a warning
  • Loading branch information
b2gills committed Jun 12, 2018
1 parent bdf3baf commit 6c60943
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions doc/Language/5to6-perlop.pod6
Expand Up @@ -367,8 +367,9 @@ arguments has been replaced by C<@*ARGS>.
=head2 No-ops
C<1 while foo();> works in the same way as it does in Perl 5, however the
idiom is mostly written as C<Nil while foo()>.
C<1 while foo();> works in the same way as it does in Perl 5, however it
generates a warning. In Perl 6 the idiom is now written as
C<Nil while foo();> instead.
=head2 Bitwise String Operators
Expand Down

1 comment on commit 6c60943

@lizmat
Copy link
Collaborator

@lizmat lizmat commented on 6c60943 Jun 12, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point, thanks!

Please sign in to comment.