Skip to content

Instantly share code, notes, and snippets.

@yodiz
Created January 25, 2024 08:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yodiz/a80d957efa995f7351e73cbf24014afd to your computer and use it in GitHub Desktop.
Save yodiz/a80d957efa995f7351e73cbf24014afd to your computer and use it in GitHub Desktop.
let a =
if true
then
1
else
2
|> (fun x -> sprintf "%i" x)
let (|>>) a b = a b
let b =
if true then
1
else
2
|>> (fun x -> sprintf "%i" x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment