Help for this page

Select Code to Download


  1. or download this
    package Some::Third::Party::Module;
    # ...
    ...
       say "Done";
    }
    # ...
    
  2. or download this
    #!/usr/bin/perl
    # ...
    ...
    print "\x33\xFF\x81\x73";
    select $oldSelected;
    close $h;
    
  3. or download this
    open my $h,'>:raw','output.bin';
    print $h "\x00\x42\xAF\x99";
    doSomething();
    print $h "\x33\xFF\x81\x73";
    close $h;
    
  4. or download this
    open my $h,'>:raw','output.bin';
    my $oldSelected=select $h;
    ...
    print "\x33\xFF\x81\x73";
    select $oldSelected;
    close $h;