bool booleano = true;
byte Bytepepe = 255;
int entero = 12;
float flotante = 2.75;
char caracter = 'A';
double numeroLargo = 2.15648756;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
Serial.println(Bytepepe);
String concatenacion = "Existen " + String(Bytepepe) + " maneras de ver nuestro futuro. Y " + String(entero) + " para comer un taco. Hay " + String(flotante) + " formas de acariciar un gato. Aunque " + String(numeroLargo) + " de estas veces vayas a salir lastimado.";
Serial.println(concatenacion);
}
void loop() {
delay(10); // this speeds up the simulation
}