Created
September 1, 2020 15:50
-
-
Save dsyme/81a5f51ecc18261b226abad83e6a0ed7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
open System | |
type T() = | |
member this.Item | |
with get ([<ParamArray>] indices: int[]) = "_" | |
and set ([<ParamArray>] indices: int[]) (value: string) = () | |
let t = T() | |
// Works correctly | |
printfn "%A" t.[2, 1, 0] | |
let someText = """ | |
Some text | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment