[lang-ref] String interpolation (variable) ( powershell )
It 'should perform string interpolation with variable' {
# "${...}"
$name = 'John'
$s = "My name is $name."
$s | Should -Be 'My name is John.'
$s = "My name is ${name}."
$s | Should -Be 'My name is John.'
}