Compound data type: Difference between revisions

autohotkey example
(Added PicoLisp)
(autohotkey example)
Line 109:
END pt
ENDPROC</lang>
=={{header|AutoHotkey}}==
{{works with | AutoHotkey_L}}
[http://en.wikipedia.org/wiki/Monkey_patch monkeypatched] example.
 
<lang AutoHotkey>point := Object()
point.x := 1
point.y := 0
</lang>
 
=={{header|AWK}}==
Anonymous user