7.2 R syntax

  • Case sensitive: g is not G
  • Comment lines start with #. Comment lines are NOT interpreted by the R console.
  • Commands are separated by a new line or ;
# This is a comment: it will not be interpreted
a <- 10
A + 1
# Will throw an error because A and a are different