Help for this page

Select Code to Download


  1. or download this
    async(\&process);
    async { process(); };
    thread->create(\&process);
    
  2. or download this
    async { process($arg); };
    thread->create(\&process, $arg);  # Safe??