Apologies, this is a simple question, but I don’t understand why it doesn’t work.
Here’s a code sample
set /a 1.1=400
echo %1.1%
pause
Instead of outputting 400, it outputs “.1”
Is it something to do with setting the variable, the nature of having a period in a variable? It also doesn’t work with hyphens either, the same result happens.
1