learning F#, it seems pretty cool, favourite functional language so far.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

ReverseString.fs 116B

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