From 72dff26ebecd202f9eed9bc071e5ba2dfc9c3239 Mon Sep 17 00:00:00 2001 From: Nethuja Gunawardane Date: Sun, 11 Aug 2024 18:16:08 +0530 Subject: [PATCH] Create batchscript.bat Add hello world program in Windows batch script (.bat and .cmd files) --- batchscript.bat | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 batchscript.bat diff --git a/batchscript.bat b/batchscript.bat new file mode 100644 index 00000000..fb03f083 --- /dev/null +++ b/batchscript.bat @@ -0,0 +1,3 @@ +@echo off +echo Hello, World! +pause >nul