proc/islist(list/L)
return (istype(L))
But the problem is...
var/list/K=null
var/N=list()
islist(K) // returns 0
islist(N) //returns 1
I need to know a way to differentiate var/N and var/list/K
not matter what their values are.
EDIT: made some corrections in the code