You forgot the most important line:<div><br></div><div><span style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 13px; background-color: rgba(255, 255, 255, 0.917969); ">%% Example: </span><a href="http://xkcd.com/386/" target="_blank" style="color: rgb(17, 85, 204); font-family: arial, sans-serif; font-size: 13px; background-color: rgba(255, 255, 255, 0.917969); ">http://xkcd.com/386/</a><br style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 13px; background-color: rgba(255, 255, 255, 0.917969); ">
<br style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 13px; background-color: rgba(255, 255, 255, 0.917969); "><span class="Apple-style-span" style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 13px; background-color: rgba(255, 255, 255, 0.917969); ">Perhaps, like me, you were typing on a phone whilst standing on a crowded train.<br>
</span></div><br><div class="gmail_quote">On 19 November 2011 00:29, Bob Gustafson <span dir="ltr"><<a href="mailto:bobgus@rcn.com">bobgus@rcn.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
After spending too much time learning Erlang over the last few hours, I<br>
think I have come up with a 'solution' to Matthias' well posed example<br>
script. See below.<br>
<br>
#!/usr/bin/env escript<br>
<div class="im">  main(_) -><br>
    S = self(),<br>
    spawn_link(fun() -><br>
       io:format("~p~p~n", [lists:duplicate(100000, $a), b]),<br>
</div>       io:format(""), %**<br>
<div class="im">       S ! finished<br>
    end),<br>
    receive<br>
      finished -><br>
</div>          io:format(""), %**<br>
<div class="im">          halt(0);<br>
      _Other -><br>
          halt(1)<br>
    end.<br>
<br>
</div>This script emits a string which *does* end in 'b'.<br>
<br>
If you comment out either of the added lines followed by %**, then it<br>
will emit a shorter string not ending in 'b'.<br>
<br>
Bob G<br>
<div class="HOEnZb"><div class="h5"><br>
_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
</div></div></blockquote></div><br>