RemoteREPL.jl
RemoteREPL.jl copied to clipboard
remote function definitions
@remote f() = nothing
This gives me "UndefVarError: #f not defined"
This works fine
f() = nothing
@remote f() = nothing
so it seems like there should be an easy(ish?) fix here but I wasn't able to figure it out.