<div dir="ltr">Hello, I just spotted one counterintuitive thing for me: when you send messages to process,<br>and then access it's mailbox via erlang:process_info(Pid, messages), all messages you sent<br>is in the same order, oldest messages in the list's head!<br>
<br>Example:<br><br>self() ! m1,<br>self() ! m2,<br>self() ! m3,<br>{messages,[m1,m2,m3]} = erlang:process_info(self(), messages).<br><br>My expectations was that newest messages will be at the head of the list.<br><br>Thanks.<br>
</div>