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

sub main ($) {
my $x = shift();
return 0 unless (defined($x) and length($x));
return 1;
}