I want to enumerate a variable as so:
$x = 0
Do
$x+=1
$Day$x = True
Until $x = 7
The above returns a syntax error on $Day$x
(because it's only supposed to see one variable in the command). So basically, I want $Day1 = True
, $Day2 = True
, so on and so forth. Is there a way to accomplish this?