Help for this page

Select Code to Download


  1. or download this
    my $thread1 = new Thread \&Sub1;
    my $thread2 = new Thread \&Sub2;
    
  2. or download this
    select (LOCALFILEHANDLE);
    sleep(5);
    print "hi";
    sleep(5);
    select(STDOUT);
    
  3. or download this
    select (ANOTHERFILEHANDLE);
    sleep(4);
    print "By";
    sleep(2);
    select (YETANOTHERFILEHANDLE);