A note to myself and others who have had trouble with HEREDOCs in Perl 6: the syntax has changed. Try something like:
say q:to/endSAY/;
class Config;
# Pugs/Perl 6 configuration, autogenerated from pugs -V.
# our configuration info
my %Config = (
endSAY
instead of using "<<". (Note the "q" followed by ":to" followed by the terminator "/endSAY/"...)
I'm sure it's "correct" on some level.. (Score:1)
Re: (Score:1)