7.2 R syntax
- Case sensitive: g is not G
- Comment lines start with #
- 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
# This is a comment: it will not be interpreted
a <- 10
A + 1
# Will throw an error because A and a are different