RosettaCodeData/Task/String-concatenation/PowerShell/string-concatenation.ps1

9 lines
146 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
$s = "Hello"
Write-Host $s World.
# alternative, using variable expansion in strings
Write-Host "$s World."
$s2 = $s + " World."
Write-Host $s2