Files
2024-09-21 23:49:08 +10:00

9 lines
142 B
Go

package q1
func Deref(typ interface{}) interface{} {
if typ, ok := typ.(*int); ok {
return *typ
}
return typ
}