Reputation: 3907
Just out of sheer curiosity, is there a way to intentionally display that banner message that one sees at startup of the Julia REPL?
When querying help?
I got this:
help?> banner
search: AbstractChannel
Couldn't find banner
Perhaps you meant base, Channel, Range, range or Base
ERROR: "banner" is not defined in module Main
in error at error.jl:21
Upvotes: 1
Views: 181
Reputation: 421
You almost got it though. banner
is not exported by the Base
module. All you need is to call Base.banner()
on the REPL instead.
Upvotes: 7