From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
1234567891011121314151617 BEGIN { if( $ENV{PERL_CORE} ) { chdir 't'; @INC = '../lib'; }}use strict;BEGIN { $| = 1; $^W = 1; }use Test::Simple tests => 3;ok(1, 'compile');ok(1);ok(1, 'foo');
BEGIN {
if
(
$ENV
{PERL_CORE} ) {
chdir
't'
;
@INC
=
'../lib'
}
use
strict;
BEGIN { $| = 1; $^W = 1; }
Test::Simple
tests
=> 3;
ok(1,
'compile'
);
ok(1);
'foo'