I am attempting to create a program that will essentially "Emulate" variables.
I tried testing this issue with this code:
@echo off
set a=b
set b=c
:: The program should echo %b% because it is expanded with double percentages
echo %%a%%
the Program only echoes "%%a%%", instead of expanding to %b%, which should result in the program echoing C.
What am I doing wrong?