I try to use string interpolation in PowerShell:
$myvariable = "World"
Write-Host "Hello $myvariable"
The code above works fine, writes "Hello World"
However in case if in the string the character follows the variable part forms a legal variable name, it cannot be parsed because of the ambiguity
$myvariable = "World"
Write-Host "Hello $myvariableimmediately continuing"
Question
I understand this should not work, but despite of googling I can not find such an example. What is the syntax I miss?