Skip to content

Instantly share code, notes, and snippets.

@hadley
Created February 14, 2018 13:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hadley/2b0a03727b2c884dfb97de66266a539a to your computer and use it in GitHub Desktop.
Save hadley/2b0a03727b2c884dfb97de66266a539a to your computer and use it in GitHub Desktop.
f <- function(...) {
x <- 2
g(x = x, ...)
}
g <- function(...) {
x <- 3
h(x = x, ...)
}
h <- function(...) list(...)
x <- 1
f(x = x )
#> $x
#> [1] 3
#>
#> $x
#> [1] 2
#>
#> $x
#> [1] 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment