ChifiSource / Olive.jl

pure julia notebooks
MIT License
152 stars 6 forks source link

module default methods #84

Open emmaccode opened 1 year ago

emmaccode commented 1 year ago

Olive modules need to replace Base methods (e.g.) readdir with their olive equivalents...

import Base: pwd

[Base.delete_method!(m) for m in methods(pwd)]

pwd() = working_directory::String

etc...