The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

# $Id: Apple.pm,v 1.2 2007/09/28 14:35:08 drhyde Exp $
use Devel::CheckOS qw(die_unsupported);
$VERSION = '1.0';
sub os_is { $^O =~ /^(darwin|MacOS)/ ? 1 : 0; }
die_unsupported() unless(os_is());
1;