<div>
            <div>
                <span>Hi Folks,</span><span></span></div><div><span><br></span></div><div><span>New to Erlang and playing with code and trying to learn erlang.</span></div><div><span><br></span></div><div><span>I have been reading the getting started guide and trying this code (on Mac OS X with erlang from MacPorts):</span></div><div><span><br></span></div><div><span><div>-module(first).</div><div>% call would look like format_temps([{moscow,{f,-40}}, {bangalore,{f,40}}, {wellington, {c,24}}]).</div><div>-export([format_temps/1, start/0]).</div><div>format_temps([]) -></div><div><span class="Apple-tab-span" style="white-space:pre">  </span>ok;</div><div>format_temps([City|Rest]) -></div><div><span class="Apple-tab-span" style="white-space:pre">    </span>print_temp(convert_to_celsius(City)),</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>format_temps(Rest). </div><div>convert_to_celsius({City, {c, C}}) -></div><div><span class="Apple-tab-span" style="white-space:pre">     </span>{City, {c, C}};</div><div>convert_to_celsius({City, {f, F}}) -></div><div><span class="Apple-tab-span" style="white-space:pre">       </span>{City, {c, (F-32)*5/9}}.</div><div>print_temp({City, {c, C}}) -></div><div><span class="Apple-tab-span" style="white-space:pre">      </span>io:format("~p has a temperature of ~w C~n",[City,C]).</div><div>start() -></div><div><span class="Apple-tab-span" style="white-space:pre">  </span>Pid = spawn(?MODULE, format_temps, [{moscow,{f,-40}}, {bangalore,{f,40}}, {wellington, {c,24}}]),</div><div><span class="Apple-tab-span" style="white-space:pre">    </span>Pid.</div><div><br></div><div>When I try to run:</div><div><br></div><div>first:format_temps(args).</div><div><br></div><div>I don't have any problems. I get the correct response.</div><div><br></div><div>When I try to run as:</div><div><br></div><div>first:start().</div><div><br></div><div>I get the following error:</div><div><br></div><div><div>Error in process <0.49.0> with exit value: {undef,[{first,format_temps,[{moscow,{f,-40}},{bangalore,{f,40}},{wellington,{c,24}}]}]}</div><div><br></div><div>What's wrong?</div><div><br></div><div>Thanks</div><div>Sid</div></div></span></div>
        </div>