Skip to content
This repository has been archived by the owner on Jan 1, 2019. It is now read-only.

Commit

Permalink
- Added f# hello world
Browse files Browse the repository at this point in the history
Added an F# implementation of hello world
  • Loading branch information
markslingerland committed Oct 1, 2017
1 parent d64cd6d commit 4229a61
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Hello_World.rb
Original file line number Diff line number Diff line change
@@ -1 +1 @@
puts "hello world"
puts 'Hello, world!'
7 changes: 7 additions & 0 deletions hello_world.fs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
open System

[<EntryPoint>]
let main (argv :string[]) =
printfn "Hello World"
Console.ReadLine() |> ignore
0

0 comments on commit 4229a61

Please sign in to comment.