Created
November 27, 2019 18:35
-
-
Save medigor/f89b345000caab2c9a794ee97ce0f72e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type WriteAny = WriteAny with | |
static member inline ($) (x: char, _) = Console.Write x | |
static member inline ($) (x: string, _) = Console.Write x | |
let inline write any = any $ WriteAny | |
write "1" | |
write '1' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment