The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
no warnings 'uninitialized';
new => [qw(-init new)],
];
##########
sub init {
##########
my $self = shift;
my %args = @_;
$self->SUPER::init(
name => 'tcsh',
%args,
);
$self->ignore_push(qw(GROUP HOST HOSTTYPE MACHTYPE OSTYPE VENDOR));
}
1;