I am using Julia Studio and would like to know the command for clearing the console of text and memory like imports or variables? Something like matlabs "clc" and "clear" commands.
I am using Julia Studio and would like to know the command for clearing the console of text and memory like imports or variables? Something like matlabs "clc" and "clear" commands.
As mentioned workspace() provides a fresh Main. One can clear variables (and the screen) with the following:
Variable definitions are permanent but can be nulled. To free types and the like wrap them in modules. For more info see the first two questions here.