The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#! ./blib/script/seis
use v6;
use Test;
plan 1;

my $self = "some text";

is ~eval(q/"self is $self"/,:lang<perl5>),"self is some text","lexical inside an eval";

# vim: ft=perl6