Do you think it will be possible to use importstr with variable?
e.g:
{
files: [
{
file: filepath,
content: importstr filepath
} for filepath in ['a.txt', 'b.txt', 'c.txt']
],
}
some_function(file):: (
local content = importstr file;
#process the content
)
Do you think it will be possible to use
importstrwith variable?e.g: