paperlined.org
apps
>
autohotkey
>
syntax
document updated 16 years ago, on Mar 30, 2008
For times when people ask what specific features AutoHotkey-the-language doesn't have (that most scripting languages do):
reference-counting
,
garbage collection
although you can abuse the symbol table to create arrays, hash tables, and even linked lists, it's not possible to fully deallocate them afterwards (they
can not be removed from the symbol table
)
per-module private variables
(be it namespaces, or just per-filename)
constant folding
?