Help for this page

Select Code to Download


  1. or download this
    my %results= (
        nothing => nothing(),
    ...
        empty   => empty(),
        zero    => zero(),
    );
    
  2. or download this
    {   "nothing" => "_undef",
        "" => "empty",
        "zero" => 0,
    }
    
  3. or download this
        _undef:  11,363,636.36/s
         empty:   9,174,311.93/s
       nothing:  20,000,000.00/s
          zero: 166,666,666.67/s
    
  4. or download this
    sub nothing { return (); }
    nothing() for 0..100_000_000;
    warn time()-$^T;