I’ve been trying to create a list of strings to name load cases in a loop.
However, it would seem that it’s not possible to interact with a list of strings after it’s created, is that really true?
Please see the example code piece below:
+prog template
head List of strings
let#list1 1,2,3
prt#list1
let#list2 'A','B','C'
prt#list2
let#list3 #list1(:)
prt#list3
let#list4 #list2(:)
prt#list3
end