Having a string on its own in Powershell outputs it to the console. At first glance it looks like i behaves as Write-Host. Does it?
function AnyFunction(){
'aaa'
Write-Host 'bbb'
}
Having a string on its own in Powershell outputs it to the console. At first glance it looks like i behaves as Write-Host. Does it?
function AnyFunction(){
'aaa'
Write-Host 'bbb'
}