Skip to content

Instantly share code, notes, and snippets.

@tdsmith
Created November 16, 2012 09:12
Show Gist options
  • Save tdsmith/4085743 to your computer and use it in GitHub Desktop.
Save tdsmith/4085743 to your computer and use it in GitHub Desktop.
chain assignment with = works
> a <- 1
> b <- 2
> a = b = 3
> a
[1] 3
> b
[1] 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment