ebodine has asked for the wisdom of the Perl Monks concerning the following question:
This produces the following:#!/usr/bin/perl -w use 5.008; use threads; use strict; use Win32::OLE; my $thr = threads->new(\&sub1); my @data = $thr->join(); sub sub1 { print "INFO: In sub\n"; return "Fifty-six", "foo", 2; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: threading and Win32::OLE
by jand (Friar) on Mar 11, 2003 at 20:44 UTC | |
by ebodine (Novice) on Mar 11, 2003 at 21:42 UTC |