Hi , i have a bit strange experience with the attached code. The compiler seems to be 'hanging' and the process ccplus1.exe has to bee killed via the task manager. No error messages. I know that the problem i caused by missing () from String.length (CrashStr.length) method , but the fact that no errors or anything at all is a ministry to me.
String CrashStr = "";
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial.println(CrashStr.length);
}
void loop() {
// put your main code here, to run repeatedly:
}