Hi Community!
Coding guidelines discussion. Consider you have For with one command in the cycle. Here are the options:
One
For i=1:1:1000 set ^Test(i)=""
Two
For i=1:1:1000 {
set ^Test(i)=""
}
Same for the "If":
if a set b=a
or
if a {
set b=a
}
Your choice? Or maybe even other options?