Skip to content

Instantly share code, notes, and snippets.

@crissyg
Last active July 19, 2017 14:59
Show Gist options
  • Save crissyg/002de710868a1031ba15a158723c7e6f to your computer and use it in GitHub Desktop.
Save crissyg/002de710868a1031ba15a158723c7e6f to your computer and use it in GitHub Desktop.
F# program. Sum two numbers
/// F# program
/// Sum two numbers
/// by crissyg
open System
[<EntryPoint>]
let main argv =
let a = Console.ReadLine() |> int
let b = Console.ReadLine() |> int
printfn "%d" (a+b)
0 // return an integer exit code
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment