Scripting competition

David Beck david_beck at ministerschedulerpro.com
Mon May 11 20:05:14 EDT 2009


I saw this and wanted to participate. have not check it, and there may 
be overflow issues

function recurseFib n
  if n <= 2 then return 1
  return recurseFib( n - 1, n - 2 )
end recurseFib

put recurseFib( 211 )

thanks for the quiz



More information about the use-livecode mailing list