Skip to content

Commit 47dfb50

Browse files
committed
Dance subroutine example: Finished changing print's to say's
1 parent 5a230d6 commit 47dfb50

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/subs-n-sigs.pod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ TODO this example doesn't seem like a good one for first-class subs.
115115
my %moves =
116116
hands-over-head => sub { say '/o\ ' },
117117
bird-arms => sub { say '|/o\| ' },
118-
left => sub { print '>o ' },
119-
right => sub { print 'o< ' },
120-
arms-up => sub { print '\o/ ' };
118+
left => sub { say '>o ' },
119+
right => sub { say 'o< ' },
120+
arms-up => sub { say '\o/ ' };
121121

122122
my @awesome-dance = <arms-up bird-arms right hands-over-head>;
123123

0 commit comments

Comments
 (0)