Help for this page

Select Code to Download


  1. or download this
    print "pid:$$\n";
    my $x = 'monks' x (3);
    sleep 60;
    
  2. or download this
    print "$$\n";
    my $n = 3;
    $x = 'monks' x ($n);
    sleep 60;
    
  3. or download this
    monksmonksmonks
    monks
    
  4. or download this
    print "$$\n";
    $x = 'monks' x (3);  
    sleep 60;
    
  5. or download this
    monksmonksmonks
    monksmonksmonks
    monksmon<