Remove Arduino as a language (#3933)

* Remove Arduino as a language

* Move Arduino samples to C++

* Move .ino entry to its correct place
This commit is contained in:
oldmud0
2018-01-11 04:48:19 -06:00
committed by Colin Seymour
parent ca714340e8
commit 8e628ecc36
4 changed files with 1 additions and 11 deletions

7
samples/C++/hello.ino Normal file
View File

@@ -0,0 +1,7 @@
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.print("Hello");
}