Help for this page

Select Code to Download


  1. or download this
    my $test = new Hi(
       test_a => 'hello',
       test_b => \sub{ return 1 },
       test_c => \sub{ get_me( $get_a, $get_b ) },
    );
    
  2. or download this
    my $test = new Hi(
       test_a => 'hello',
       test_b => sub{ return 1 },
       test_c => sub{ get_me( $get_a, $get_b ) },
    );