Help for this page

Select Code to Download


  1. or download this
    $binary_string = "1" . "0" x 10;
    print "$binary_string\n"
    
  2. or download this
    $power = 4;
    $binary_string = "1" . "0" x (10 * $power);  # parens required
    print "$binary_string\n"