Puzzle 24 Explanation: Go Flag
Understand how types work.
We'll cover the following...
Try it yourself
Try executing the code below to see the result for yourself.
Press + to interact
package mainimport ("fmt")type Flag intfunc main() {var i interface{} = 3f := i.(Flag)fmt.Println(f)}
Explanation
Even ...