Permalink
Cannot retrieve contributors at this time
use v6; | |
# Test various forms of comments | |
use Test; | |
plan 2; | |
# L<S02/Double-underscore forms/"The double-underscore forms are going away:"> | |
ok 1, "Before the =finish Block"; | |
is $=finish,q:to/TEXT/, 'can read the lines after =finish'; | |
flunk "=finish cannot work properly"; | |
# vim: expandtab shiftwidth=4 | |
TEXT | |
=finish | |
flunk "=finish cannot work properly"; | |
# vim: expandtab shiftwidth=4 |