Devel::AssertOS::DEC - Devel::AssertOS::DEC documentation


Devel-CheckOS documentation Contained in the Devel-CheckOS distribution.

Index


Code Index:

COPYRIGHT and LICENCE

Top


Devel-CheckOS documentation Contained in the Devel-CheckOS distribution.

# $Id: DEC.pm,v 1.5 2008/11/05 22:52:34 drhyde Exp $

package Devel::AssertOS::DEC;

use Devel::CheckOS;

$VERSION = '1.4';

sub matches { return qw(OSF VMS); }
sub os_is { Devel::CheckOS::os_is(matches()); }
Devel::CheckOS::die_unsupported() unless(os_is());

sub expn {
join("\n",
"The operating system is from Digital Equipment Corporation, or was",
"originally written by DEC before they were taken over by Compaq/HP"
)
}

1;