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.
Julia: How to clear console
29.4k Views Asked by Just_Alex At
4
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.