Help for this page

Select Code to Download


  1. or download this
    use feature qw( say );
    use B qw( );
    ...
    my ($f,$g) = (333,"xyz");
    say B::class(B::svref_2object(\$f));
    say B::class(B::svref_2object(\$g));
    
  2. or download this
    IV
    PV
    
  3. or download this
    use feature qw( say );
    use B qw( );
    ...
    "".$_;
    $_ = undef;
    say B::class(B::svref_2object(\$_));
    
  4. or download this
    PVIV