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