fork(1) download
  1. <?php
  2.  
  3. for ($guyAge = 16, $deposit = 10000; $deposit == 1000000; $guyAge++, $deposit += (($deposit / 100) * 10)) {
  4. echo "The guy is $guyAge while he's got USD $deposit in the bank \n";
  5. }
  6.  
Success #stdin #stdout 0.02s 52480KB
stdin
Standard input is empty
stdout
Standard output is empty