The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
123456789101112131415 #! perluse strict;use warnings;use utf8;use Carp;package Text::Layout::Cairo;sub new { my ( $pkg, @data ) = @_; croak("Text::Layout::Cairo: Not yet implemented");}1;
#! perl
use
strict;
warnings;
utf8;
Carp;
package
Text::Layout::Cairo;
sub
new {
my
(
$pkg
,
@data
) =
@_
;
croak(
"Text::Layout::Cairo: Not yet implemented"
);
}
1;