Files
yaegi/_test/interface42.go
T

13 lines
99 B
Go

package main
import "fmt"
func main() {
v := interface{}(0)
fmt.Println(v)
}
// Output:
// 0