9 lines
142 B
Go
9 lines
142 B
Go
package q1
|
|
|
|
func Deref(typ interface{}) interface{} {
|
|
if typ, ok := typ.(*int); ok {
|
|
return *typ
|
|
}
|
|
return typ
|
|
}
|