Knight's tour: Difference between revisions

m
Removed the redundant increment of the loop variable.
(→‎{{header|AutoHotkey}}: fix onexit, move win code)
m (Removed the redundant increment of the loop variable.)
Line 2,390:
# Record current move
push @moves, to_algebraic($i,$j);
$board[$i][$j] = $move++;
 
# Get list of possible next moves
Line 2,460:
 
[[File:perl_knights_tour.png]]
 
=={{header|Perl 6}}==
{{trans|Perl}}