# New Ticket Created by  grond...@yahoo.fr 
# Please include the string:  [perl #117853]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=117853 >


This is perl6 version 2013.04-32-gc66c428 built on parrot 5.2.0
revision RELEASE_5_2_0

# this works:
my $text = q :to 'END';
Hello world
:)
END

say $text;



# this does not:
constant TEXT = q :to 'END';
Hello world
:)
END

say TEXT;

Reply via email to