Help for this page

Select Code to Download


  1. or download this
    DESCRIPTION
    A Hobo is a migratory worker inside the machine that carries the
    ...
    for running code asynchronously. Unlike threads, each hobo is a unique
    process to the underlying OS. The IPC is managed by "MCE::Shared",
    which runs on all the major platforms including Cygwin.
    
  2. or download this
    {
    use MCE::Shared;
    ...
    say ($val->()) ? 0 : 1;  # says 1 if first caller
    
    }