programming-examples/perl/Win32/Is windows 95.pl
2019-11-15 12:59:38 +01:00

9 lines
115 B
Perl

#!/usr/bin/perl -w
use Win32;
$is95 = Win32::IsWin95();
if ($is95) {
print "Running Windows 95\n";
}