Help for this page

Select Code to Download


  1. or download this
      DB<114> $h={a=>42}
     => { a => 42 }
    
      DB<115> "$h->{a}"
     => 42
    
  2. or download this
      DB<118> $sub=sub { "nope" }
     => sub { "???" }
    
      DB<119> "$sub->()"
     => "CODE(0xa5cc200)->()"
    
  3. or download this
      DB<120> $_="X"
     => "X"
    ...
    
      DB<122> $_
     => "nope"