Re: Speed: sprintf vs. & operator
- Posted by Robert Craig <rds at RapidEuphoria.com> Jan 07, 2003
- 482 views
In Euphoria 2.4 alpha, the following runs 2.6x faster than it does in 2.3... sequence fullName, fn, mn, ln fn = "George" mn = "Walker" ln = "Bush" atom t t = time() for i = 1 to 10000000 do fullName = fn & " " & mn & " " & ln end for ? time() - t Regards, Rob Craig Rapid Deployment Software http://www.RapidEuphoria.com