diff --git a/README.md b/README.md index 3819241..3f35775 100644 --- a/README.md +++ b/README.md @@ -13,10 +13,13 @@ This is a repository full of implementations of the classic, "Hello, world!", in - [C#](cs.cs) - [C++](cpp.cpp) - [Chicken](chicken.chicken) +- [Clojure](clojure.clj) - [CoffeeScript](coffeescript.coffee) - [Cow](cow.cow) - [Dart](dart.dart) - [Elixir](elixir.ex) +- [Erlang](erlang.erl) +- [F#](fs.fs) - [Fortran](fortran.f95) - [Go](go.go) - [Groovy](groovy.groovy) @@ -30,6 +33,7 @@ This is a repository full of implementations of the classic, "Hello, world!", in - [Lua](lua.lua) - [Nasm (x86)](nasm.asm) - [Nial](nial.ndf) +- [Nim](nim.nim) - [OCaml](ocaml.ml) - [Octave](octave.m) - [Pascal](pascal.pas) @@ -44,6 +48,7 @@ This is a repository full of implementations of the classic, "Hello, world!", in - [Ruby](ruby.rb) - [Rust](rust.rs) - [Scala](scala.scala) +- [Scheme](scheme.scm) - [StarDot](stardot.stardot) - [Swift](swift.swift) - [TypeScript](typescript.ts) diff --git a/clojure.clj b/clojure.clj new file mode 100644 index 0000000..b1cda22 --- /dev/null +++ b/clojure.clj @@ -0,0 +1 @@ +(println "Hello, World") diff --git a/erlang.erl b/erlang.erl new file mode 100644 index 0000000..4cddbcd --- /dev/null +++ b/erlang.erl @@ -0,0 +1,5 @@ +-module(main). +-export([start/0]). + +start() -> + io:fwrite("hello world\n"). diff --git a/fs.fs b/fs.fs new file mode 100644 index 0000000..93f352a --- /dev/null +++ b/fs.fs @@ -0,0 +1 @@ +System.Console.WriteLine("hello world") diff --git a/nim.nim b/nim.nim new file mode 100644 index 0000000..888763b --- /dev/null +++ b/nim.nim @@ -0,0 +1 @@ +echo "Hello World!" diff --git a/scheme.scm b/scheme.scm new file mode 100644 index 0000000..d441299 --- /dev/null +++ b/scheme.scm @@ -0,0 +1 @@ +(print "Hello world!")