DEBSOURCES
Skip Quicknav
sources / golang-github-traefik-yaegi / 0.16.1-2 / _test / type1.go
123456789101112
package main import "fmt" func main() { var i interface{} = "hello" s := i.(string) fmt.Println(s) } // Output: // hello