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

#! perl
use strict;
use utf8;
use Carp;
sub new {
my ( $pkg, @data ) = @_;
croak("Text::Layout::Pango: Not yet implemented");
}
1;