mac-floppy-emu/arduino/floppyemu/SdFat/examples/HelloWorld/HelloWorld.pde
Sin Shimozono de725331e6 floppy-emu
2014-07-11 01:07:07 +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() {}