I want to change the name of a variable within a batch file because that way I wouldn't have to type out the same code 24 times.
I would like something like this but that actually works:
set n=1
set t=1
:loop
set /p %n%%t% = this will be variable %n%%t%:
echo %%n%%t%%
set /a n+=1
set /a t+=1
goto loop