R/debugTest.R

Defines functions func1 func2 func3 func4

func1 <- function(x){func2(x)}
func2 <- function(x){func3(x + 1)}
func3 <- function(x){func4(x + 4)}
func4 <- function(x){
  y = "a"
  x <- x + y
  return(x)
}
bmccloskey/demoPackage documentation built on May 29, 2019, 4:50 p.m.