Help for this page

Select Code to Download


  1. or download this
    >perl -MO=Concise,f -e"sub f { return $x }"
    main::f:
    ...
    -           <1> ex-rv2sv sK/1 ->4
    3              <#> gvsv[*x] s ->4
    -e syntax OK
    
  2. or download this
    main::f:
    3  <1> leavesub[1 ref] K/REFC,1 ->(end)
    ...
    -           <1> ex-rv2sv sK/1 ->-
    2              <#> gvsv[*x] s ->3
    -e syntax OK
    
  3. or download this
    >perl -MO=Concise,f -e"sub f { $x }"
    main::f:
    ...
    -        <1> ex-rv2sv sK/1 ->-
    2           <#> gvsv[*x] s ->3
    -e syntax OK
    
  4. or download this
    5.8.8:
               Rate implicit explicit
    ...
                Rate explicit implicit
    explicit 1000/ms       --      -0%
    implicit 1004/ms       0%       --
    
  5. or download this
    use strict;
    use warnings;
    ...
    cmpthese($OUTER, \%tests);
    print("\n");
    print("Multiply by $INNER to get real rate.\n");