Perhaps this is something I've simply overlooked in the documentation, but how can you view a list of currently defined variables in Julia? For example, in R you can use ls()
which will give you a list of user-defined objects in the current scope. Is there an equivalent in Julia?
This is very similar to this question, but it seems that the whos
function (as well as names
) will list modules and other things which are not user-defined. How do I simply list variables which have been defined by the user and are not exported from other modules?