From:
https://ruby-doc.org/core-2.7.0/String.html#method-i-2F
It looks like we can do either of these to get a split:
got = str.split(',')
got = str/','
But the second one doesn't seem to work (and neither does './' or './(ch)' etc..), instead giving a method not found (MRI 2.7.0)
And in fact, I get nothing when I do:
puts String.methods.index(:/)
(Although now that I've tried that on Integer, I see it doesn't show up there either)
Is this a bug in the docs?