[lang-ref] ( comment_multi_line ) ( powershell )

It 'should comment multi line' {
    # <# ... #>

    $a = 1
    <#
        multi line comment
        $a += 1
        $a += 1
    #>

    $a | Should -Be 1
}