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 1/7] 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() +{ + +} From 03a10cd51663dfafe589d77e4d552ba93df976a3 Mon Sep 17 00:00:00 2001 From: Parth Goyal <32260753+ParthGoyal1508@users.noreply.github.com> Date: Sun, 29 Oct 2017 05:16:54 +0000 Subject: [PATCH 2/7] helloworld_in_cduce --- hello_world.xsd | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 hello_world.xsd diff --git a/hello_world.xsd b/hello_world.xsd new file mode 100644 index 0000000..6afaf24 --- /dev/null +++ b/hello_world.xsd @@ -0,0 +1,3 @@ +(* Hello World in CDuce *) + +print "Hello World!\n";; From 408b41f2bd2616c8c08cdf3d7a270dbd4f28da5e Mon Sep 17 00:00:00 2001 From: Parth Goyal <32260753+ParthGoyal1508@users.noreply.github.com> Date: Sun, 29 Oct 2017 05:19:56 +0000 Subject: [PATCH 3/7] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e0beb98..c488a59 100644 --- a/README.md +++ b/README.md @@ -42,3 +42,4 @@ 34. [Ponylang](https://github.com/srbcheema1/Hello_world/blob/master/hello_world.pony) 35. [Verilog](https://github.com/srbcheema1/Hello_world/blob/master/hello_world.v) 36. [Kotlin](https://github.com/srbcheema1/Hello_world/blob/master/Hello_world.kt) +37. [CDuce](https://github.com/srbcheema1/Hello_world/blob/master/hello_world.xsd) From f9c2c0419f279687cbed90377ef6e2f283f2e5fd Mon Sep 17 00:00:00 2001 From: Parth Goyal <32260753+ParthGoyal1508@users.noreply.github.com> Date: Sun, 29 Oct 2017 05:24:33 +0000 Subject: [PATCH 4/7] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c488a59..2a9c261 100644 --- a/README.md +++ b/README.md @@ -43,3 +43,4 @@ 35. [Verilog](https://github.com/srbcheema1/Hello_world/blob/master/hello_world.v) 36. [Kotlin](https://github.com/srbcheema1/Hello_world/blob/master/Hello_world.kt) 37. [CDuce](https://github.com/srbcheema1/Hello_world/blob/master/hello_world.xsd) +38. [ARDUINO](https://github.com/srbcheema1/Hello_world/blob/master/hello_world.ino) From 051cca3a4d7835ce90d4b264989edc3590a96e2c Mon Sep 17 00:00:00 2001 From: derrick murphy <21dmurphy@cr.k12.ia.us> Date: Sun, 1 Apr 2018 23:25:44 -0500 Subject: [PATCH 5/7] add hello world in haxe! --- HelloWorld.hx | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 HelloWorld.hx diff --git a/HelloWorld.hx b/HelloWorld.hx new file mode 100644 index 0000000..05c3f62 --- /dev/null +++ b/HelloWorld.hx @@ -0,0 +1,5 @@ +class HelloWorld { + static public function main(): Void { + trace("Hello, World!"); + } +} From f082468a28ae3665509e6157a5fc80076b83cc82 Mon Sep 17 00:00:00 2001 From: ccdlus Date: Wed, 18 Apr 2018 02:22:05 +0700 Subject: [PATCH 6/7] add sql oracle (#88) --- LANGUAGES.md | 3 +++ README.md | 1 + hello_world.sql | 3 +++ 3 files changed, 7 insertions(+) create mode 100644 hello_world.sql diff --git a/LANGUAGES.md b/LANGUAGES.md index 83ae019..23d100f 100644 --- a/LANGUAGES.md +++ b/LANGUAGES.md @@ -97,3 +97,6 @@ install-rust: install-scala: sudo apt-get install scala -y + +install-sql + sqlplus -S / as sysdba @hello_world.sql \ No newline at end of file diff --git a/README.md b/README.md index 2a9c261..41f28c1 100644 --- a/README.md +++ b/README.md @@ -44,3 +44,4 @@ 36. [Kotlin](https://github.com/srbcheema1/Hello_world/blob/master/Hello_world.kt) 37. [CDuce](https://github.com/srbcheema1/Hello_world/blob/master/hello_world.xsd) 38. [ARDUINO](https://github.com/srbcheema1/Hello_world/blob/master/hello_world.ino) +39. [Oracle](https://github.com/srbcheema1/Hello_world/blob/master/hello_world.sql) diff --git a/hello_world.sql b/hello_world.sql new file mode 100644 index 0000000..5ded760 --- /dev/null +++ b/hello_world.sql @@ -0,0 +1,3 @@ +set head off +select 'Hello World' from dual; +exit \ No newline at end of file From 7701a1c6c9e9378055e2b2e8e7d1bd27e0b86855 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gawe=C5=82=20Kazimierczuk?= Date: Fri, 13 Oct 2017 21:36:21 +0200 Subject: [PATCH 7/7] Add 'Hello, World!' in Fetlang --- hello_world.fet | 1 + 1 file changed, 1 insertion(+) create mode 100644 hello_world.fet diff --git a/hello_world.fet b/hello_world.fet new file mode 100644 index 0000000..c723295 --- /dev/null +++ b/hello_world.fet @@ -0,0 +1 @@ +Make slave scream "Hello, World!"