Skip to content

Instantly share code, notes, and snippets.

@esmarr58
Created November 28, 2017 22:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save esmarr58/9a53b5da226f6a1a16dd197b59300f18 to your computer and use it in GitHub Desktop.
Save esmarr58/9a53b5da226f6a1a16dd197b59300f18 to your computer and use it in GitHub Desktop.
String ejemplo1 = "Hola ";
String ejemplo2 = "Mundo!";
String resultado;
void setup() {
resultado = ejemplo1+ejemplo2;
Serial.begin(9600);
Serial.print("El resultado de la concatenacion es: ");
Serial.println(resultado);
}
void loop() {
// put your main code here, to run repeatedly:
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment