Euphoria v4.03 bug in "append" ?
- Posted by alanjohnoxley Jan 22, 2012
- 1371 views
I discovered that missing the left hand side of a assignment where the right hand side was "append", does not give any error, it just continues...
I had a quick look in the bug index, but did not see this.
Is this "working as designed"?
Eui - v gives:
Euphoria Interpreter v4.0.3 development
Windows, Using Managed Memory
Revision Date: 2011-06-24 13:43:18, Id: 4985:26b65e77e3d9
-- Eu v4.0.3 issue with assignment missing in a append statement with warning with trace with type_check without profile procedure test() sequence s1, s2 s1 = {} s2 = {"dummy data"} append(s1,s2) -- which should have been -- s1 = append(s1,s2) end procedure test()