When I do enter this in powershell Console
$test=@'
Test
Test'@
And do enter several times, it keeps printing
>>
So I can never finish command.
What to do ?
'@
should be first thing in the line or it is considered to be just a part of the string.
$test=@'
Test
Test
'@
This approach also works with @"
/"@