Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: code that runs (and works) on both Linux and Win32

by cdarke (Prior)
on Sep 02, 2011 at 10:46 UTC ( [id://923821]=note: print w/replies, xml ) Need Help??


in reply to code that runs (and works) on both Linux and Win32

Perosnally I use the if pragma for loading modules. I put platform specific code into subroutines, and call via a dispatch table:
# simplified my %g_dt = (MsWin32 => \&WinStuff, linux => \&LinuxStuff, # and so on ); ... # The call $g_dt{$^O}->(args);
(With suitable checks at load time to ensure $^O is a key to %g_dt)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://923821]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (2)
As of 2024-04-24 17:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found