Noob - Getting Started Infinte Loop?
Mats Cronqvist
mats.cronqvist@REDACTED
Thu Aug 31 10:59:58 CEST 2006
ke han wrote:
>
> On Aug 31, 2006, at 6:54 AM, fbg111 wrote:
>
>>
>>
>> ke han wrote:
>>>
>>> I always write code that has good spacing / formatting both for
>>> readability and to ensure I never hit any potential edge/corner cases
>>> of the compile toolchain.
>>>
>>
>> Thanks, I'll use your suggestions, especially if this is what other
>> Erlang
>> coders expect. What are edge/corner cases, though? Situtations where
>> spacing causes the compiler to interpret code differently?
here's an example.
24> A=<<"a">>.
** 1: syntax error before: '<' **
24> A = <<"a">>.
<<97>>
25> A=<<<"a">>.
true
mats
More information about the erlang-questions
mailing list