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)

Try the provParseR package in your browser

Any scripts or data that you put into this service are public.

provParseR documentation built on Aug. 16, 2022, 1:05 a.m.