Skip to content
This repository has been archived by the owner on Jan 1, 2019. It is now read-only.

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
srbcheema1 authored Apr 17, 2018
2 parents 15b4210 + 7701a1c commit 22f287b
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 1 deletion.
5 changes: 5 additions & 0 deletions HelloWorld.hx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class HelloWorld {
static public function main(): Void {
trace("Hello, World!");
}
}
3 changes: 3 additions & 0 deletions LANGUAGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,6 @@ install-rust:

install-scala:
sudo apt-get install scala -y

install-sql
sqlplus -S / as sysdba @hello_world.sql
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,7 @@
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. [Fortran](https://github.com/srbcheema1/Hello_world/blob/master/hello_world.f90)
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)
40. [Fortran](https://github.com/srbcheema1/Hello_world/blob/master/hello_world.f90)
1 change: 1 addition & 0 deletions hello_world.fet
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Make slave scream "Hello, World!"
12 changes: 12 additions & 0 deletions hello_world.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Hello world in the Arduino programming language

void setup()
{
Serial.begin(9600);
Serial.println("Hello, world!");
}

void loop()
{

}
3 changes: 3 additions & 0 deletions hello_world.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
set head off
select 'Hello World' from dual;
exit
3 changes: 3 additions & 0 deletions hello_world.xsd
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
(* Hello World in CDuce *)

print "Hello World!\n";;

0 comments on commit 22f287b

Please sign in to comment.