Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- open System
- [<EntryPoint>]
- let main argv =
- let seq1 = seq { for i in 1 .. 100 -> (i, i*i) }
- for (a, asqr) in seq1 do
- printfn "%d squared is %d" a asqr
- Console.ReadLine() |> ignore
- 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement