Raku / book

Using Raku – an unfinished book about Raku
https://perl6book.com/
284 stars 49 forks source link

Strange glyphs (even by perl standards ;-) in certain sections of document #3

Closed brettstahlman closed 14 years ago

brettstahlman commented 14 years ago

See top of page 15 in Chapter 4 "Subs and Signatures" for an example. The following code looks fine in subs-and-sigs.pod: my $dance = ''; my %moves = hands-over-head => sub { $dance ~= '/o\ ' }, bird-arms => sub { $dance ~= '|/o| ' }, left => sub { $dance ~= '>o ' }, right => sub { $dance ~= 'o< ' }, arms-up => sub { $dance ~= '\o/ ' };

my @awesome-dance = ; for @awesome-dance -> $move { %moves{$move}.(); }

...but it looks strange in the .pdf (e.g., lots of upside-down question marks and other odd-looking glyphs).

moritz commented 14 years ago

Thanks for your report. It is fixed in the 2010-06 release.

brettstahlman commented 14 years ago

Excellent! Thanks.