The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
|
#!/bin/sh
if [ -f bperl ]; then
perl=./bperl
else
perl="perl -Iblib/arch"
fi
for pl in ${1+"$@"}
do
echo "***** $pl *****"
$perl -MO=Bytecode,-obtest $pl && ./byteperl btest
done
|