A Collection of Code Snippets in as Many Programming Languages as Possible
This project is maintained by TheRenegadeCoder
Welcome to the Reverse String in F# page! Here, you'll find the source code for this program as well as a description of how the program works.
open System
module Reverse =
let run (s: string) =
let arr = s.ToCharArray()
Array.Reverse arr
String arr
module Helpers =
let parseArgs = function
| [| s |] -> Some s
| _ -> None
let handle = function
| Some s ->
s |> Reverse.run |> printfn "%s"
| None ->
printfn ""
[<EntryPoint>]
let main argv =
argv
|> Helpers.parseArgs
|> Helpers.handle
0
Reverse String in F# was written by:
If you see anything you'd like to change or update, please consider contributing.
No 'How to Implement the Solution' section available. Please consider contributing.
No 'How to Run the Solution' section available. Please consider contributing.