Add a variable to a class instance at runtime: Difference between revisions

Content added Content deleted
(added omit from ML/I)
Line 68: Line 68:
=={{header|AutoHotkey}}==
=={{header|AutoHotkey}}==
{{works with|AutoHotkey_L}}
{{works with|AutoHotkey_L}}
<lang AutoHotkey>e := object()
<lang AutoHotkey>e := {}
e.foo = 1 </lang>
e.foo := 1 </lang>


=={{header|Common Lisp}}==
=={{header|Common Lisp}}==