package main import "reflect" func IsNil(input any) bool { return reflect.ValueOf(input).IsNil() } func main() { println(IsNil(3)) }