Skip to content

Instantly share code, notes, and snippets.

@jayemerson
Created July 16, 2011 00:40
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save jayemerson/1085849 to your computer and use it in GitHub Desktop.
Coke... this Bud's for you!
> a <- c(1,2,3) + c(4,5,6)
> print(a)
5 7 9
> b <- c(1,2,3) + 99
> print(b)
100 101 102
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment