On Monday, April 7, 2014 2:37:14 PM UTC-4, Steven G. Johnson wrote:

> However, I'm not sure how to write such a method in Base such that it can 
> be cleanly extended/overridden if you are running in IJulia.
>

Oh nevermind, it would be easy.  Just write:

readline(io::IO, prompt::String) = ....default thing in Base....
readline(prompt::String) = readline(STDIN, prompt)

and then IJulia can override readline(io::Base.Pipe, prompt::String) the 
way it does now.

Reply via email to