Hi, suppose I defined
type Point
a::Real
b::Real
end
but later realized that I would rather have
abstract(GeoObject)
type Point <: GeoObject
a::Real
b::Real
end
Of course Julia gives me an
ERROR: invalid redefinition of constant Point
Is working in a module and then reloading that the only workaround?
Best,
Tamas
