fsharp.org icon indicating copy to clipboard operation
fsharp.org copied to clipboard

wrong response in language spec 1.1.4

Open bleis-tift opened this issue 9 years ago • 1 comments

> let result = 32 |> square |> toStr |> reverse;;
val it : string = "4201"

it is wrong. result is correct.

bleis-tift avatar Jan 17 '16 06:01 bleis-tift

Yep just tested it and it should instead be.

> let result = 32 |> square |> toStr |> reverse;;
val result : string = "4201"

voronoipotato avatar Jun 10 '19 14:06 voronoipotato