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"). 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" diff --git a/hello-world.d b/hello-world.d new file mode 100644 index 0000000..b2ac868 --- /dev/null +++ b/hello-world.d @@ -0,0 +1,8 @@ +import std.stdio; + +void main() +{ + + writeln("Hello, World!"); + +} 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" 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"