which is faster?
- Posted by don cole <doncole at pacbell.net> May 08, 2007
- 683 views
Hello everybody, Has anybody benchmarked this:
function won_lost(sequence a,sequence b) if equal(a,b) then return "Won" end if return "Lost" end function -------------------------or----------------------- function won_lost(sequence a,sequence b) if equal(a,b) then return "Won" else return "Lost" end if end function
Thanks Bernie, Don Cole