mirror of
https://github.com/esp8266/Arduino.git
synced 2025-08-17 06:42:21 +03:00
13 lines
315 B
C++
13 lines
315 B
C++
void setup() {
|
|
// put your setup code here, to run once:
|
|
// "comment with a double quote
|
|
/* \" other comment with double quote */
|
|
Serial.println("Accept: */*");
|
|
Serial.println("Accept: \" */*");
|
|
Serial.println("Accept: \\"); // */*");
|
|
}
|
|
|
|
void loop() {
|
|
// put your main code here, to run repeatedly:
|
|
|
|
} |