Difference between revisions of "Golang Snippets"

From UVOO Tech Wiki
Jump to navigation Jump to search
(Created page with "``` xType := fmt.Sprintf("%T", a) fmt.Println(xType) // "[]int" ```")
 
(No difference)

Latest revision as of 04:28, 10 January 2021

    xType := fmt.Sprintf("%T", a)
    fmt.Println(xType) // "[]int"