From 2c329b106df91e320dfdae86cefe6e1c32fb0a9b Mon Sep 17 00:00:00 2001 From: Giorgi Chakhidze <0xfeeddeadbeef@gmail.com> Date: Thu, 31 Mar 2022 15:45:26 +0400 Subject: [PATCH] Fix: PowerShell writes to output stream by default (#1340) Write-Host is superfluous, because PowerShell sends everything to output stream by default. --- p/PowerShell.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p/PowerShell.ps1 b/p/PowerShell.ps1 index 90c127bf..0dcf78b2 100644 --- a/p/PowerShell.ps1 +++ b/p/PowerShell.ps1 @@ -1 +1 @@ -Write-Host 'Hello World' +'Hello World'