Explore Connect Documentation
Snippets
1
2
3
4
5
6
pi  # a built-in constant whose value is 3.141593
pi = 3  # redefines variable pi
pi  # .GlobalEnv match
rm(pi)  # removes masking variables
pi  # back to 3.141593
Press desired key combination and then press ENTER.