Help for this page

Select Code to Download


  1. or download this
    @numbers = ();
    for (@list) {
        push @numbers, hex $_;
    }
    
  2. or download this
    my $value = 14;
    #Examine 3rd bit from the right
    print ($value >> 3) % 2;