We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I downloaded Arduino IDE 1.6.6 then I used Tool > Auto Format.. Auto Format looked well than in Processing.. I hope that Processing next release version include this feature..
Arduino: int a = 6;
Processing: int a=6;
Answers
It's just that in Processing's IDE (PDE), it tries to please many styles of writing code.
In case of
int a=6;
, it simply respects that style decision.And if we type
int a = 6;
, it's gonna respect that the same way, leaving both styles in peace.