1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-11 22:24:13 +01:00
Arduino/build/shared/examples/Stubs/HelloWorld/HelloWorld.pde
2009-07-11 00:34:59 +00:00

10 lines
92 B
Plaintext

void setup() {
Serial.begin(9600);
}
void loop() {
Serial.println("Hello World!");
}