Help for this page

Select Code to Download


  1. or download this
    BEGIN {
        print time . "\n";
    ...
    print time;
    print "\n";
    print @a;
    
  2. or download this
    1325041203
    1325041203
    ...
    
    1325041218
    1
    
  3. or download this
        int *array = malloc(100000000 * sizeof(int));
        int i;
        for(i = 0; i < 100000000; i++){
            array[i] = i + 1;
        }
    
  4. or download this
    
    print time . "\n"; 
    my @a = any {$_== 92} 1..100000000; print "\n"; 
    print time;