Last active
July 19, 2017 14:59
-
-
Save crissyg/002de710868a1031ba15a158723c7e6f to your computer and use it in GitHub Desktop.
F# program. Sum two numbers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// 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