From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
123456789101112131415 #! perluse strict;use warnings;use utf8;use Carp;package Text::Layout::Pango;sub new { my ( $pkg, @data ) = @_; croak("Text::Layout::Pango: Not yet implemented");}1;
#! perl
use
strict;
warnings;
utf8;
Carp;
package
Text::Layout::Pango;
sub
new {
my
(
$pkg
,
@data
) =
@_
;
croak(
"Text::Layout::Pango: Not yet implemented"
);
}
1;