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

# $Id: Netware.pm,v 1.1 2007/09/27 16:41:25 drhyde Exp $
use Devel::CheckOS qw(die_unsupported);
$VERSION = '1.0';
sub os_is { $^O eq 'netware' ? 1 : 0; }
die_unsupported() unless(os_is());
1;