Clear the variables

Hello Julia’s users,
There is a command in Julia similar to “clear” in Matlab?
Sometimes, I need to clear the variables of my computer when I am programming.
Thanks a lot.

1 Like

No, there isn’t. If you just need to free memory, then you can assign something else to the binding and (if there are no more references to it) it will be gc-ed.

1 Like