You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Don Syme, etc. have mentioned the backward pipe is now considered bad practice (like backticks in Powershell), so should this koan have a note that this pattern is discouraged in favor of pipelining and that typically you would do this instead?
[<Koan>]letTheBackwardPipeOperatorCanAlsoHelpWithGrouping()=letadd x y =
x + y
letdouble x =
x *2letresult=
add 58|> double
AssertEquality result 26
The text was updated successfully, but these errors were encountered:
Don Syme, etc. have mentioned the backward pipe is now considered bad practice (like backticks in Powershell), so should this koan have a note that this pattern is discouraged in favor of pipelining and that typically you would do this instead?
The text was updated successfully, but these errors were encountered: