Help for this page

Select Code to Download


  1. or download this
    my @x = map { rand => rand } (0 .. 5)
    Compile error: syntax error at (eval 310) line 5, near "} ("
    BEGIN not safe after errors--compilation aborted at (eval 310) line 5.
    
  2. or download this
    my @x = map { rand() => rand } (0 .. 5);