package main

import (
    "fmt"
    "reflect"
)

func main(){
    var x = "Hello"
    fmt.Println(reflect.TypeOf(x))
}