Re: Euphoria's future?

new topic     » goto parent     » topic index » view thread      » older message » newer message

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.

new topic     » goto parent     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu