Help for this page

Select Code to Download


  1. or download this
      DB<103> @array=a..f
     => ("a", "b", "c", "d", "e", "f")
     
      DB<104> @array[0..0]
     => "a"
    
  2. or download this
      DB<106> @array = 1 .. 10;
     => (1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
    ...
     
      DB<109> \%stats;
     => { 1 => 100, 2 => 101, 3 => 108, 4 => 108, 5 => 101, 6 => 103, 7 =>
    + 79, 8 => 98, 9 => 100, 10 => 102 }