Skip to content

Instantly share code, notes, and snippets.

@mannharleen
Created December 24, 2019 11:00
Show Gist options
  • Save mannharleen/646e974ee50cf813977b9c6b11ce4f74 to your computer and use it in GitHub Desktop.
Save mannharleen/646e974ee50cf813977b9c6b11ce4f74 to your computer and use it in GitHub Desktop.
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