--
You received this message because you are subscribed to the Google Groups "Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to developers+unsubscribe@arduino.cc.
--
You received this message because you are subscribed to the Google Groups "Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to developers+...@arduino.cc.
Not bool, _Bool :-) go look and read stdbool.h.
<stdbool.h> contains #define bool _Bool and many arduino methods are defined using bool my understanding is that When a symbol is evaluated, it generates a string of tokens which are scanned again. so that boolean -> bool -> _Bool
Correct. Tokens are recursively scanned on the current line until all are resolved.