Re: Known Bugs List and new language features?
- Posted by rforno at tutopia.com Aug 15, 2001
- 437 views
I also reported a small bug in the trace() facility. ----- Original Message ----- From: <euman at bellsouth.net> To: "EUforum" <EUforum at topica.com> Subject: Re: Known Bugs List and new language features? > > try something like this to read your file > note: rb = read binary > the file has to be binary else, you need to change this. > > integer fn, junk, file_length > sequence filename, seq > > fn = open(filename , "rb") > junk=seek(fn,-1) > file_length=where(fn) > junk=seek(fn,0) > > seq = append(seq, get_bytes(fn, file_length)) > > > There is only one or two bugs in Euphoria I personally know > of, but Robert has said these will be fixed in 2.3 > > One of them is a minor memory leak and the other > is a typo in one of the include files... > > > Euman > euman at bellsouth.net > > > > >