Sobes.tech
Junior — Senior

What result will the console output in example №3

livecode

Task condition

Determine what the program will print when it runs, and explain the reason.

var s "string"
fmt.Println(s == nil)
var i interface{}
fmt.Println(i == nil)
i = s    
fmt.Println(i==nil)