Help for this page

Select Code to Download


  1. or download this
    my $x = '8';
    my $y = '16';
    print((0+$x) | (0+$y), "\n");    # 24
    print((''.$x) | (''.$y), "\n");  # 96
    
  2. or download this
    $x .= '';  # Stringify
    $x += 0;   # Numerify