Created
December 24, 2019 11:00
-
-
Save mannharleen/646e974ee50cf813977b9c6b11ce4f74 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lets go! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
) | |
func main() { | |
var in interface{} | |
in = "asd" | |
switch tmp := in.(type) { | |
case int: in = tmp | |
case string: in = tmp | |
} | |
fmt.Printf("%v, %T\n", in, in) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment