inst/testscripts/source3.r

f <- function(x) {
  g(x)
  h(x)
  return(1)
}

g <- function(x) {
  return(1)
}

h <- function(x) {
  return(1)
}

someVector <- function() {
  return(c(1, 3, 5))
}

### Run script

x <- 10

f(x)
f(x)
End-to-end-provenance/provParseR documentation built on Aug. 16, 2022, 11:38 a.m.