1 2 3 4 5 6 7 8 9 10
classdef Nil methods function len = length(obj) len = 0; end function ret = eq(a,b) ret = strcmp(class(b),'types.Nil'); end end end