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

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