mac-floppy-emu/floppy-emu-source-1.0L-F11/AVR/SdFat/examples/HelloWorld/HelloWorld.pde

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() {}