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)
ProvTools/provParseR documentation built on Aug. 17, 2022, 10:09 p.m.