Skip to content

Instantly share code, notes, and snippets.

@laat
Created March 21, 2019 09:17
Show Gist options
  • Save laat/0a63079bb49b7a1fa84d78130fcf3ec1 to your computer and use it in GitHub Desktop.
Save laat/0a63079bb49b7a1fa84d78130fcf3ec1 to your computer and use it in GitHub Desktop.
open System
let ( ..|..<++>..|.. ) x y = x + " " + y
let ( >.< ) x z = x ..|..<++>..|.. "." ..|..<++>..|.. "Thanks Obama." |> z
"custom operators" ..|..<++>..|.. "makes everything worse" >.< Console.WriteLine
@laat
Copy link
Author

laat commented Mar 21, 2019

stdout

custom operators makes everything worse . Thanks Obama.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment