clear - Clear the current workspace
| ... : | RevObject (pass by const reference) |
| Variables to remove. |
ls() # check what is in the workspace
a <- 1
b := exp(a)
ls() # check what is in the workspace
clear()
ls() # check what is in the workspace
a <- 1
b := exp(a)
ls() # check what is in the workspace
clear( b )
ls() # check what is in the workspace