Re: Discuss changing the behaviour of append()
- Posted by gimlet Jun 21, 2014
- 3491 views
Just a question:
Assuming that appending/prepending to atoms is on
we have:
? append(1,{}) -- {1,{}} ? append({},1) -- {1} ? prepend(1,{}) -- {{},1} ? prepend({},1) -- {1}
I'm not saying it's wrong but don't you find the difference strange?