template<class T> inline Print &operator <<(Print &obj, T arg) { obj.print(arg); return obj; }
char test[] = "Strange, that this is a test string";
char delim[] = ", "; // comma and space act as delimiters
void setup() {
Serial.begin(115200);
char *pc = strtok(test, delim);
while (pc != NULL) {
Serial << pc << '\n';
pc = strtok(NULL, delim);
}
Serial << "but now test is: " << test << '\n';
}