Reposting : small bug in euphoria parsing
- Posted by Alan Oxley <fizzpop at icon.co.za> Jan 13, 2006
- 495 views
-- demo a tiny bug where Eu parsing breaks. -- If "trace" is coded between the procedure declaration and the -- first private variables, ie immediately after the proc dcl. -- error is "Syntax error - expected to see possibly 'end', not a type" -- Euphoria v2.5 -- workaround is to put the trace(1) after the variables declarations -- with trace procedure main() trace(1) integer i1 i1 = 0 i1 = i1 + 1 end procedure main()
Sorry for the out-of-order post, my original did not get through