It flags no error when there is a comma between Serial and print - such as Serial, print (...
It flags no error when there is a space after period or comma.
But the code execution goes nuts.
.
It flags as error when there is a space between Serial; and print, but gives "missing colon : before print "error.
Sketch uses 1,470 bytes (4%) of program storage space. Maximum is 32,256 bytes.
Global variables use 182 bytes (8%) of dynamic memory, leaving 1,866 bytes for local variables. Maximum is 2,048 bytes.
Must be just another way for Arduino to cater to beginners.
Isn't C space delimited language?
Sorry, I forgot , Arduino is C++.
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial. print("Hello");
Serial .print("Good bye");
}
void loop() {
// put your main code here, to run repeatedly:
}