I am new to Julia Lang. I am coming from the background of Matlab.
In Matlab, when pressing whos
command I will get all variables in the current scope; and also, I can store them in another variable like x=whos;
Is there such commands exists in Julia?
Example code in Matlab:
>> a=3;
>> b=4;
>> whos
Variables in the current scope:
Attr Name Size Bytes Class
==== ==== ==== ===== =====
a 1x1 8 double
b 1x1 8 double
prefix 1x16 16 char
Total is 18 elements using 32 bytes.