buruzaemon
buruzaemon

Reputation: 3907

How to force display of that banner message in Julia's REPL?

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

Answers (1)

ShaoWei Teo
ShaoWei Teo

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

Related Questions