RosettaCodeData/Task/Stack-traces/AutoHotkey/stack-traces-1.ahk

18 lines
144 B
AutoHotkey

f()
return
f()
{
return g()
}
g()
{
ListLines
msgbox, lines recently executed
x = local to g
ListVars
msgbox, variable bindings
}
#Persistent