Remove Write-Output call from PowerShell example

Default behavior of PowerShell is to send any objects at end of pipeline to output.
There is no need to explicitly call Write-Output cmdlet.

Fixes #416
This commit is contained in:
George Chakhidze 2017-07-11 17:54:43 +04:00 committed by GitHub
parent 10eb37c724
commit a19c501e21

View File

@ -1 +1 @@
Write-Output 'Hello World'
'Hello World'