Reputation: 23154
I was trying to define:
.*(s1::String, s2::String) = string(s1,s2)
and got an error: function Base..* must be explicitly imported
, so I did:
import Base..*
but got another error: invalid operator "..*"
.
How should I import this operator?
Upvotes: 1
Views: 116