Is there any way to "concatenate" variable references with strings?:
fat_greek_wedding = 0;
nationality = "greek";
"fat_" .. nationality .. "_wedding" = 1; -- fat_greek_wedding == 1
Or perhaps something like:
fat_greek_wedding = 0;
nationality = "greek";
fat_(nationality)_wedding = 1; -- fat_greek_wedding == 1
FYI I am writing code for Unified Remote, which uses Lua: https://github.com/unifiedremote/Docs