Array literals and more
I miss array literals for the easy translation of a numerical value in something else.
E.g.
if self.cmd = 1 then
cmdSt := "Open";
elseif self.cmd = 2 then
cmdSt := "Forward";
elseif self.cmd = 3 then
cmdSt := "Close";
endif;
becomes
cmdSt := ["Open", "Forward", Close", ][ self.cmd ];
Endless possibilities to simplify source if this gets JSON/Python powers.