#comments "multiple line comments"
#process
"
1) install new / require packages
2) load the package
3) use the function from the package.
"
#checked out the packages that has been installed.
[Link]()
#checked out the loaded package
search()
#install new package
[Link]("ExcelFunctionsR")
#uninstall existing package
[Link]("ExcelFunctionsR")
#load the package
library("ExcelFunctionsR")
#unload the package
detach("package:ExcelFunctionsR")
a = 10 + c
b <-1+a
q <-100
sqrt(q)
pi
10^3
#ctrl+l to clear screen
#rm to delete one specific variable
rm(a)
#check out all the variables
ls()
rm(list=ls()) # clear all variables