AH
Size: a a a
AH
I
I
I
AH
g
type Wtf() =
member _.Yield _ = []
[<CustomOperation "add">]
member _.Add(list, x: int) =
Console.WriteLine "adding int!"
box x :: list
member _.Add(list, x: string) =
Console.WriteLine "adding string!"
box x :: list
let wtf = Wtf()
wtf {
add 1
add "1" // calling method without custom attribute WTF
}
VS
g
AH
AH
AH
VZ
VZ