rm(list=ls())
I have a function in the global environment, and after executing the above command, that function is still there. I know because I can still call that function and
pryr::where('function_name')
returns the global environment
Why is that?