September Morn Update
This commit is contained in:
parent
4e2d22a71d
commit
aac6731f2c
6856 changed files with 141342 additions and 21127 deletions
19
Task/Boolean-values/Batch-File/boolean-values.bat
Normal file
19
Task/Boolean-values/Batch-File/boolean-values.bat
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
@echo off
|
||||
|
||||
::true
|
||||
set "a=x"
|
||||
::false
|
||||
set "b="
|
||||
|
||||
if defined a (
|
||||
echo a is true
|
||||
) else (
|
||||
echo a is false
|
||||
)
|
||||
if defined b (
|
||||
echo b is true
|
||||
) else (
|
||||
echo b is false
|
||||
)
|
||||
|
||||
pause>nul
|
||||
Loading…
Add table
Add a link
Reference in a new issue