From 65453cd50ba025f2e8c3581ac7dc1b00a1ef248f Mon Sep 17 00:00:00 2001 From: Claude Kavuna Date: Sun, 8 May 2022 07:58:34 -0400 Subject: [PATCH 1/5] batch file added --- section_2/code/helloworld_parameter.bat | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 section_2/code/helloworld_parameter.bat diff --git a/section_2/code/helloworld_parameter.bat b/section_2/code/helloworld_parameter.bat new file mode 100644 index 00000000..5200c4af --- /dev/null +++ b/section_2/code/helloworld_parameter.bat @@ -0,0 +1,3 @@ +@echo off +echo "Hello World %name" +pause From aae4947058bd890b2b894e4fed87da637989841d Mon Sep 17 00:00:00 2001 From: Claude Kavuna Date: Sun, 8 May 2022 08:49:21 -0400 Subject: [PATCH 2/5] minor change --- section_2/code/helloworld_parameter.bat | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/section_2/code/helloworld_parameter.bat b/section_2/code/helloworld_parameter.bat index 5200c4af..a2e5315a 100644 --- a/section_2/code/helloworld_parameter.bat +++ b/section_2/code/helloworld_parameter.bat @@ -1,3 +1,4 @@ @echo off -echo "Hello World %name" +echo "Hello World " +echo %name% pause From f5c46fd733fe1d42b69c9b96e636a0f124f2deab Mon Sep 17 00:00:00 2001 From: Claude Kavuna Date: Sun, 8 May 2022 08:55:15 -0400 Subject: [PATCH 3/5] minor adjustment --- section_2/code/helloworld_parameter.bat | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/section_2/code/helloworld_parameter.bat b/section_2/code/helloworld_parameter.bat index a2e5315a..0b752578 100644 --- a/section_2/code/helloworld_parameter.bat +++ b/section_2/code/helloworld_parameter.bat @@ -1,4 +1,3 @@ @echo off -echo "Hello World " -echo %name% +echo "Hello World " %name% pause From 022dc9abb8ccf32e2b84765f85f55c3280e7ba0a Mon Sep 17 00:00:00 2001 From: Claude Kavuna Date: Sun, 8 May 2022 08:57:58 -0400 Subject: [PATCH 4/5] One more minor change, hopefully the last one --- section_2/code/helloworld_parameter.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/section_2/code/helloworld_parameter.bat b/section_2/code/helloworld_parameter.bat index 0b752578..098bde62 100644 --- a/section_2/code/helloworld_parameter.bat +++ b/section_2/code/helloworld_parameter.bat @@ -1,3 +1,3 @@ @echo off -echo "Hello World " %name% +echo "Hello " %name% pause From 8fc5bf3e00341f3e9bb2f654c9db2d83daf47767 Mon Sep 17 00:00:00 2001 From: Claude Kavuna Date: Sun, 8 May 2022 09:01:34 -0400 Subject: [PATCH 5/5] trying --- section_2/code/helloworld_parameter.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/section_2/code/helloworld_parameter.bat b/section_2/code/helloworld_parameter.bat index 098bde62..d6b9a60d 100644 --- a/section_2/code/helloworld_parameter.bat +++ b/section_2/code/helloworld_parameter.bat @@ -1,3 +1,3 @@ @echo off -echo "Hello " %name% +echo "Hello %name% " pause