From 37b49bf04b9176dec8dbe9fd40d5fc985317fb08 Mon Sep 17 00:00:00 2001 From: Parth Goyal <32260753+ParthGoyal1508@users.noreply.github.com> Date: Sun, 29 Oct 2017 05:13:06 +0000 Subject: [PATCH] wrote hello world in arduino programming language --- hello_world.ino | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 hello_world.ino diff --git a/hello_world.ino b/hello_world.ino new file mode 100644 index 0000000..22846e0 --- /dev/null +++ b/hello_world.ino @@ -0,0 +1,12 @@ +// Hello world in the Arduino programming language + +void setup() +{ + Serial.begin(9600); + Serial.println("Hello, world!"); +} + +void loop() +{ + +}