module ReverseString let reverse (input: string) = Seq.toList input |> List.rev |> Array.ofList |> System.String