Hi guys, this cmd batch works fine if it runs without TCC:
But If I run it with TCC the result is not correct. Why?
I would like to find a solution compatible for both systems (cmd batch and TCC)
Thank you!!
Code:
@ECHO OFF
SET "var_a=8.5"
SET "var_b=8.4.9"
IF %var_a% LSS %var_b% (
ECHO NOT CORRECT)
But If I run it with TCC the result is not correct. Why?
I would like to find a solution compatible for both systems (cmd batch and TCC)
Thank you!!