We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4147de commit 2f51baaCopy full SHA for 2f51baa
base/client.jl
@@ -590,7 +590,7 @@ function repl_main(_)
590
banner = if opts.banner == -1
591
10 * Int(interactiveinput)
592
else
593
- opts.banner
+ Int(opts.banner)
594
end
595
quiet = (opts.quiet != 0)
596
history_file = (opts.historyfile != 0)
stdlib/REPL/src/precompile.jl
@@ -32,11 +32,14 @@ UP_ARROW = "\e[A"
32
DOWN_ARROW = "\e[B"
33
34
repl_script = """
35
+Base.load_terminfo("xterm")
36
2+2
37
print("")
38
printstyled("a", "b")
39
display([1])
40
display([1 2; 3 4])
41
+import REPL.banner
42
+banner()
43
foo(x) = 1
44
@time @eval foo(1)
45
; pwd
0 commit comments