You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
189 B
Perl

#!/usr/bin/perl -w
if (is_windows() ) {
print "We are running under Windows.\n";
}
print "The OS name is $^O\n";
sub is_windows() {
return $^O =~ /^(MS)?Win/;
}