From fbd5548c1d815fe73a37dbf8ae01fc53c6cedc29 Mon Sep 17 00:00:00 2001 From: adhavalboy Date: Sun, 7 Oct 2018 22:51:53 +0530 Subject: [PATCH 1/6] haskell language --- hello-world.hs | 1 + 1 file changed, 1 insertion(+) create mode 100644 hello-world.hs diff --git a/hello-world.hs b/hello-world.hs new file mode 100644 index 0000000..b865d2b --- /dev/null +++ b/hello-world.hs @@ -0,0 +1 @@ +main = putStrLn "hello, world" From 2f7cfc47ecb20b98cac96806da1afd5ce6964625 Mon Sep 17 00:00:00 2001 From: adhavalboy Date: Sun, 7 Oct 2018 22:55:26 +0530 Subject: [PATCH 2/6] BASIC --- hello-world.bas | 1 + 1 file changed, 1 insertion(+) create mode 100644 hello-world.bas diff --git a/hello-world.bas b/hello-world.bas new file mode 100644 index 0000000..c4de158 --- /dev/null +++ b/hello-world.bas @@ -0,0 +1 @@ +PRINT "hello, world" From 19b798c5b1f2b6596946a98709bb727e430bd506 Mon Sep 17 00:00:00 2001 From: adhavalboy Date: Sun, 7 Oct 2018 23:04:51 +0530 Subject: [PATCH 3/6] enlarge --- Hello-world.erl | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Hello-world.erl diff --git a/Hello-world.erl b/Hello-world.erl new file mode 100644 index 0000000..8fff548 --- /dev/null +++ b/Hello-world.erl @@ -0,0 +1,2 @@ +main(_) -> + io:fwrite("hello, world\n"). From d24a6ab0199f81c37e23e5bb2e4a1e3d5bf73c1b Mon Sep 17 00:00:00 2001 From: adhavalboy Date: Sun, 7 Oct 2018 23:07:24 +0530 Subject: [PATCH 4/6] Elixir --- hello-world.exs | 1 + 1 file changed, 1 insertion(+) create mode 100644 hello-world.exs diff --git a/hello-world.exs b/hello-world.exs new file mode 100644 index 0000000..99e7e1c --- /dev/null +++ b/hello-world.exs @@ -0,0 +1 @@ +IO.puts "hello, world" From 30868276ed5f07f76cbc4cc27372d6d60b3a8d28 Mon Sep 17 00:00:00 2001 From: adhavalboy Date: Sat, 13 Oct 2018 16:39:09 +0530 Subject: [PATCH 5/6] d lang added --- hello-world.d | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello-world.d diff --git a/hello-world.d b/hello-world.d new file mode 100644 index 0000000..ef636d7 --- /dev/null +++ b/hello-world.d @@ -0,0 +1,6 @@ +import std.stdio; + +void main() +{ + writeln("Hello, World!"); +} \ No newline at end of file From 144e61cab7c4c0133f89645db07319a0d902297c Mon Sep 17 00:00:00 2001 From: adhavalboy Date: Sat, 13 Oct 2018 16:42:18 +0530 Subject: [PATCH 6/6] D lang added --- hello-world.d | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hello-world.d b/hello-world.d index ef636d7..b2ac868 100644 --- a/hello-world.d +++ b/hello-world.d @@ -2,5 +2,7 @@ import std.stdio; void main() { + writeln("Hello, World!"); -} \ No newline at end of file + +}