in reply to Re^2: dynamic loading modules
in thread dynamic loading modules
Output of my test: D:\perl>test.pl#!/usr/bin/perl use strict; use warnings; use Module::Load; my $os = 'Yet Unknown'; if ( $^O =~ /MSWin/ ) { load 'Win32'; $os = Win32::GetOSName(); } print $os;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: dynamic loading modules
by sdetweil (Sexton) on Sep 03, 2012 at 16:58 UTC | |
by Anonymous Monk on Sep 03, 2012 at 17:04 UTC | |
by sdetweil (Sexton) on Sep 03, 2012 at 17:27 UTC | |
by afoken (Chancellor) on Sep 03, 2012 at 20:10 UTC | |
by Anonymous Monk on Sep 04, 2012 at 00:28 UTC |