The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

#!/usr/bin/env perl
use strict;
plan tests => 1;
{
# For "<<"
no warnings;
my $js = JavaScript::Writer->new();
$js << q{alert('foo')};
is("$js", q{alert('foo');});
}