type or func?!?
- Posted by Salix <salix at freemail.hu> Mar 02, 2005
- 491 views
How should I define this routine? Is there any difference? Example 1
type seq8(sequence x) if length(x)=8 then return 1 else return 0 end if end type
Example 2
function seq8(sequence x) if length(x)=8 then return 1 else return 0 end if end function
Regards, Salix