If it does how can I toggle it? I have tried to look around but cannot find anything on it. I find Matlab's Workspace very convenient as I can follow which matrices I have createdand if in fact they look as I wanted them to.
(I would have added this as a comment, but don't have the reputation)
This is answered here: Get a list of current variables in Julia Lang
You can use the whos
function, same as in Matlab.
Julia also has a function called workspace
, which does something completely different, a bit like Matlab's clear all
, where you stash away the entire current workspace, but in a way so that you can retrieve it at a later point.