Is there a way to implement non-blocking / asynchronous execution (without fork()\'ing) in Perl?
I used to be a Python developer for many years... Python has really great
Coro is a mix between POE and threads. From reading its CPAN documentation, I think that IO::Async does real asynchronous execution. threads can be used too - at least Padre IDE successfully uses them.