Variable size/Set: Difference between revisions

Content added Content deleted
(→‎{{header|AutoHotkey}}: shortened reference to VarSetCapacity())
(Added PicoLisp)
Line 74: Line 74:
z float (18); /* occupies 10 bytes */
z float (18); /* occupies 10 bytes */
</lang>
</lang>

=={{header|PicoLisp}}==
In PicoLisp, all variables have the same size (a single cell). But it is
possible to create a data structure of a given minimal size with the
'[http://software-lab.de/doc/refN.html#need need]' function.


=={{header|Python}}==
=={{header|Python}}==