Created
December 10, 2020 20:46
-
-
Save jsundram/f87b155395a0ba798139bd4a1e6bd88d to your computer and use it in GitHub Desktop.
`IJulia.history()` prints everything on one line in jupyter-console, not sure why; this is a quick workaround
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function history() | |
map(sort(collect(keys(IJulia.In)))) do k | |
println(k, ": ", IJulia.In[k]) | |
end; | |
return Nothing; | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment