Help for this page

Select Code to Download


  1. or download this
    @movements == (0, 1);
    
  2. or download this
    local $" = ",";
       if ("@movement" eq "0,1") { ... }
    elsif ("@movement" eq "1,0") { ... }
    ...
    
  3. or download this
    local $" = ",";
    my %dir = (
    ...
        "-1,0" => "west"
    );
    $from = $dir{"@movement"};