Is there an AutoHotkey REPL?

autohotkey, read-eval-print-loop

Solution

This may also be something like what you're looking for

Forum Topic link

GitHub link

Hope it helps

Problem

I know that you can run and live-reload `ahk` scripts. And I've seen the scintilla-based editor that provides debugging. But, is there any kind of command-line-based REPL? I was testing the statement to get the active window's process name and thought it would really helpful! ``` ahk> WinGet, active, ProcessName, A powershell.exe ```

Original source