I have a question concerning something I've never really
thought about. Is there a method in Perl that allows a
programmer to have certain pieces of code execute depending
on what system architecture that code resides on? For
example:
if (on Win32) {
do this;
}
else {
# Assume unix box
do that;
}