--Types compatible with all types --Something like the Object class ――Since it is a general-purpose representation of all types of values, you cannot perform operations.
main.go
package main
import (
"fmt"
)
func main() {
var x interface{}
fmt.Printf("%#v", x)
}
When output, it becomes
$ go run main.go
<nil>