in reply to Writing Interrupt proram in PERL

Hi,
Sorry for late reply

I tried the following code but it's throwing an error:
#!C:/Perl/bin/perl.exe use strict; use warnings; use POE; # The base system. use POE::Wheel::ReadLine; # For reading lines from the console.

Error: MSWin32 cannot run POE::Wheel::ReadLine at C:/Perl/site/lib/POE/Wheel/ReadLine.p m line 17.

Does this error mean i cannot use POE under windows environment?

Replies are listed 'Best First'.
Re^2: Writing Interrupt proram in PERL
by marto (Cardinal) on Oct 05, 2009 at 11:19 UTC
      So, is there any work-around for using POE::Wheel::ReadLine under windows environment?

        From the documentation:

        "Really good workarounds are possible but don't exist as of this writing. They involve writing a special POE::Loop for Windows ..."

        Perhaps you could implement this suggestion, or search the web to see if anyone else has achieved something similar.

        Martin