Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Trim more trailing whitespace
  • Loading branch information
Paul Cochrane committed May 6, 2015
1 parent fe9c110 commit 0c6ea29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions categories/cookbook/01strings/01-13upper-lower-case.pl
Expand Up @@ -12,10 +12,10 @@

my $string = "the cat sat on the mat";

say $string=$string.uc; # THE CAT SAT ON THE MAT
say $string=$string.uc; # THE CAT SAT ON THE MAT

say $string.=lc; # the cat sat on the mat
say $string.=lc; # the cat sat on the mat

say $string.wordcase; # The Cat Sat On The Mat
say $string.wordcase; # The Cat Sat On The Mat

# vim: expandtab shiftwidth=4 ft=perl6

0 comments on commit 0c6ea29

Please sign in to comment.