From 4229a612b84f2f0043a66cfbe0e11bb018202efd Mon Sep 17 00:00:00 2001 From: Mark Slingerland Date: Sun, 1 Oct 2017 21:29:25 +0200 Subject: [PATCH] - Added f# hello world Added an F# implementation of hello world --- Hello_World.rb | 2 +- hello_world.fs | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 hello_world.fs diff --git a/Hello_World.rb b/Hello_World.rb index 15aaec7..5351f08 100644 --- a/Hello_World.rb +++ b/Hello_World.rb @@ -1 +1 @@ -puts "hello world" +puts 'Hello, world!' diff --git a/hello_world.fs b/hello_world.fs new file mode 100644 index 0000000..9a67620 --- /dev/null +++ b/hello_world.fs @@ -0,0 +1,7 @@ +open System + +[] +let main (argv :string[]) = + printfn "Hello World" + Console.ReadLine() |> ignore + 0 \ No newline at end of file