Re: Euphoria's future?
- Posted by SDPringle Dec 27, 2014
- 1396 views
I think we did an excellent job with the offline documentation. I wish Java had a offline documentation that you could quickly search through.
You could give a read through that. That is about 100 pages.
One of the gotchas in Euphoria 4 and greater is the limit of the for loop is cached. So this routine crashes:
for i = 1 to length(s) do if s[i] = ' ' then s = s[1..i-1] & s[i+1..$] end if end for
Because the length of s is cached, the loop continues to the original length of s, even when s shortens.