Help for this page

Select Code to Download


  1. or download this
    for ($i=1;$i<=10;$i++) { print "$i\n" };
    for ($j=10;$j>=1;$j--) { print "$j\n" };
    ...
    3
    2
    1
    
  2. or download this
    
    $pid = fork();
    ...
    } else {       ### This is the parent process
       for ($i=1;$i<=10;$i++) { print "$i\n" };
    }
    
  3. or download this
    -----------------------------------
    --the good, the bad and the physi--
    -----------------------------------