1
0
mirror of https://github.com/MADTeacher/go_basics.git synced 2025-11-29 05:36:55 +02:00
Files

9 lines
113 B
Go
Raw Permalink Normal View History

package main
import "fmt"
func main() {
var myInterface interface{}
fmt.Printf("%v", myInterface) // <nil>
}