Nicknack
05-21-2009, 12:19 PM
there seem to be an issue with nproc/nfunc in classes, check it out:
#class foo
public nfunc test
showmessage(args$[0]);
end;
#endclass
nproc test
showmessage(args$[0]);
end;
proc main
test(445, 655, 2);
#object foo a$
a.test(445, 655, 2);
end;
#class foo
public nfunc test
showmessage(args$[0]);
end;
#endclass
nproc test
showmessage(args$[0]);
end;
proc main
test(445, 655, 2);
#object foo a$
a.test(445, 655, 2);
end;