start() -> spawn(fun loop/0).<br><br>I want to convert the above code snippet into a MFA, what is the correct syntax to do this.<br><br>I tried <span style="font-family: courier new,monospace;">start() -> spawn(?MODULE, fun loop/0, []).</span> and all I get when I call it is <span style="font-family: courier new,monospace;">** exception error: bad function 'area_server.start'</span><br>
<br>