R/test_square_function.R

Defines functions test_square_function

Documented in test_square_function

#' Test function squares a number x
#'
#' This is a test function that takes an input x and prints its square.
#' @param x input a value x
#' @return x^2
#' @export

test_square_function <- function(x){
  print(x^2)
}
genehackers/optizyme documentation built on Oct. 24, 2020, 9 a.m.