Is there any reason to prefer the use of quotation marks when loading a package; e.g.
library("MASS")
over loading packages without putting the name in quotes;
library(MASS)
Looking back at some old code, I seem to switch between the two with no noticeable consequences. Is there a best practise recommendation to follow?