RosettaCodeData/Task/String-prepend/PowerShell/string-prepend.psh

4 lines
45 B
Plaintext

$str = "World!"
$str = "Hello, " + $str
$str