mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-31 20:52:13 +01:00
8e385bfbaf
This will allow using the String library in a ranged for loop: ```C++ String s = "Hi, this is a test"; for( char c : s ) Serial.print( c ); ```