Black box: Difference between revisions

Content added Content deleted
(Added AutoHotkey)
Line 14: Line 14:


=={{header|AutoHotkey}}==
=={{header|AutoHotkey}}==
<lang AutoHotkey>DebugView()
<lang AutoHotkey>SetBatchLines -1
SetBatchLines -1
;--------------------------------------------------------------------------------------
;--------------------------------------------------------------------------------------
BoardSize := 8
BoardSize := 8
Line 217: Line 216:
deltaR := dir = "D" ? 1 : dir = "U" ? -1 : 0
deltaR := dir = "D" ? 1 : dir = "U" ? -1 : 0
deltaC := dir = "R" ? 1 : dir = "L" ? -1 : 0
deltaC := dir = "R" ? 1 : dir = "L" ? -1 : 0
DebugView(r "_" c " " dir)
if TroubleShooting
if TroubleShooting