#!/usr/bin/env pugs my $a = q:t /END/ test END;
$a.perl.say; Above example works ok in pugs, But the problem is.
From S02
Heredocs are no longer written with <<, but with an adverb on any
other quote construct:
print qq:to/END/;
Give $amount to the man behind curtain number $curtain.
END
Which is correct?
