Help for this page

Select Code to Download


  1. or download this
    for (0..1_000_000) {
     $x=$_+1;
    }
    
  2. or download this
    int i, x;
    for(i = 0; i < 1000000; i++) {
        x = i + 1;
    }
    
  3. or download this
    int x = 1000000;