Help for this page

Select Code to Download


  1. or download this
    #!perl
    use 5.020;
    ...
    $VAR1 = my_bless( {
                        'name' => 'foo'
                      }, 'Foo' );
    
  2. or download this
    sub my_bless( $ref, $class ) {
        require $class;
        bless $ref => $class;
    }