Tring type

Hi,
I have this go code in a console app

package ConsoleApplication3

import (
    "fmt"
    "math"
)

const s string = "constant"

func main() {
        
    var a = s
    var b,c int = 1,2
      
    //println("go" + "lang")        
    //fmt.Println("go" + "lang")
    //fmt.Println("7.0/3.0 =", 7.0/3.0)
    //writeLn("The magic happens here.")
    
    fmt.Println(a)
}

The debugger cuts of the 1st letter of the type of a in the local window.

Cheers,
John

Just to be clear; which platform is this ?

Thanks, logged as bugs://83911

It was .net core.

bugs://83911 got closed with status fixed.