I am new to Windows 10 64-bit and start Command Prompt and type the following (set variable and echo it in same line):
H:\>set a="hello" & echo %a%
%a%
H:\>set a="hello" & echo %a%
"hello"
Why do I not see "hello" the first time I echo'ed it?
Apologies if this a basic question, I cannot seem to have found the answer online.