From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use strict;
use warnings FATAL => 'all';
use Moose;
use Scalar::Util qw( blessed );
sub clr : Abstract;
sub jvm : Abstract;
sub netcore : Abstract;
sub perl : Abstract;
sub ruby : Abstract;
sub nodejs : Abstract;
sub python : Abstract;
no Moose;
1;