Press CTRL+C or CMD+C to copy the selected text and close this dialog.
Tweet
5 people like it. Like the snippet!
If we can concatenate strings with +, what would it mean to have a / operator?
1: 2: 3: 4:
let (/) (s : string) (sep : char) = s.Split(sep) // [|"Apples"; "Oranges"; "Bananas"|] "Apples,Oranges,Bananas" / ','