From c3d0eb3f4a82e54649d3a9da686a16305c263e65 Mon Sep 17 00:00:00 2001 From: newtimmy <50924855+newtimmy@users.noreply.github.com> Date: Thu, 17 Apr 2025 16:43:34 +0200 Subject: [PATCH] Update 02_if_else.bat delete blanks to avoid error: ( was unexpected at this time. --- 004. DecisionMaking/02_if_else.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/004. DecisionMaking/02_if_else.bat b/004. DecisionMaking/02_if_else.bat index 109a3da..5b08cb0 100644 --- a/004. DecisionMaking/02_if_else.bat +++ b/004. DecisionMaking/02_if_else.bat @@ -1,7 +1,7 @@ @echo off -SET str1 = String1 -SET str2 = String2 +SET str1=String1 +SET str2=String2 if %str1%==String1 ( echo "The value of variable String1" @@ -10,4 +10,4 @@ echo "The value of variable String1" if %str2%==String3 ( echo "The value of variable c is String3" ) else (echo "Unknown value" -) \ No newline at end of file +)