Hi all,
I wrote a language extension that looks up a string in a fake dictionary. When users are using this, it seems like an awful lot of garbage strings are created:
DEF update clamp "X","W" clamp "Y","H" ENDX,Y,W,H are all keys in a dictionary. Would it be beneficial to create an X$, Y$, W$, and H$ at the beginning of the program to avoid creating strings for the dictionary keys a lot? EDIT: I've noticed that SPANIM takes a string argument a lot like my dictionaries can:
SPANIM Management number,"Animation target",... Animation target Numerical value or character string to control the elements that should changeIs it common to see the target as a string? Is it an optimization to change these to a number?