mac-floppy-emu/source-1.0L-F11/floppyemu/SdFat/examples/HelloWorld/HelloWorld.pde
2014-07-10 18:59:58 +09:00

12 lines
181 B
Plaintext
Executable File

#include <SdFat.h>
// create a serial output stream
ArduinoOutStream cout(Serial);
void setup() {
Serial.begin(9600);
cout << "Hello, World!\n";
}
void loop() {}