Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix double thinko; remove trailing whitespace in same lines
  • Loading branch information
Geoffrey Broadwell committed Mar 3, 2012
1 parent 186ae88 commit bb4c5e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions S02-bits.pod
Expand Up @@ -1954,10 +1954,10 @@ can be used in error messages, but that isn't put into any external symbol table
However, the name is introduced into the scope of the declaration itself, so it
may be used to call itself recursively:

my $secret =
anon sub tract($n) { say $n; say tract($n-1) if $n }
$secret(5); # 5 4 3 2 1
my $secret =
anon sub tract($n) { say $n; tract($n-1) if $n }

$secret(5); # 5 4 3 2 1 0

=head2 Invariant sigils

Expand Down

0 comments on commit bb4c5e5

Please sign in to comment.