Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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)
Expand Down
1 change: 1 addition & 0 deletions clojure.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
(println "Hello, World")
5 changes: 5 additions & 0 deletions erlang.erl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-module(main).
-export([start/0]).

start() ->
io:fwrite("hello world\n").
1 change: 1 addition & 0 deletions fs.fs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
System.Console.WriteLine("hello world")
1 change: 1 addition & 0 deletions nim.nim
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
echo "Hello World!"
1 change: 1 addition & 0 deletions scheme.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
(print "Hello world!")