Help for this page

Select Code to Download


  1. or download this
    perl -e '$_[0]={1,1,2,2};keys %$_[0]'     # no
    perl -e '$_[0]={1,1,2,2};print ref $_[0]' # wtf
    HASH
    
  2. or download this
    $ perl -E'$_[0]={1,1,2,2};say keys %{$_[0]}'   # ttf°
    21
    $