I am playing around with codes in Julia Base. However, codes in the Base itself references a lot of non-exported symbol, which makes copy and pasting codes from Base to the REPL impossible.
Is there a way that I can use all Base symbols wthout qualifying every usage with Base.
or explicitly importing every symbol mentiond with using Base: ......
?