Skip to content

Instantly share code, notes, and snippets.

@VictorOmondi1997
Created May 7, 2020 08:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VictorOmondi1997/768c5bae015b6d5cd51c452def9390ee to your computer and use it in GitHub Desktop.
Save VictorOmondi1997/768c5bae015b6d5cd51c452def9390ee to your computer and use it in GitHub Desktop.
Comments in R
# My year of Birth
year_of_birth = 2001
# The Current Year
current_year = 2020
# Calculating my age by subtracting year_of_birth from the current_year
age = current_year - year_of_birth
age
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment