mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-12 23:08:52 +01:00
10 lines
92 B
Plaintext
10 lines
92 B
Plaintext
|
void setup() {
|
||
|
Serial.begin(9600);
|
||
|
}
|
||
|
|
||
|
void loop() {
|
||
|
Serial.println("Hello World!");
|
||
|
}
|
||
|
|
||
|
|