0% found this document useful (0 votes)
81 views1 page

Batch Programming - If Statements Connect Terms

batch programming if statements boolean operators

Uploaded by

defect122
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
81 views1 page

Batch Programming - If Statements Connect Terms

batch programming if statements boolean operators

Uploaded by

defect122
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Connect terms in IF statements (boolean operators) @echo off set /a a=1+1 set /a b=1-1 if "%a%;%b%"=="2;2" ( echo Error ) else

( echo %a% equals 2 but %b% does not equal 2 ) pause>nul exit

Important is : putting quotes

You might also like