R/areafunction.R

Defines functions areasquare

Documented in areasquare

#'@description Function to calculate area of square.
#'@author Lotte
#'@details testing functions
#'@param width width of square in m
#'@param height height of square in m
#'@title squareareacalc



areasquare <- function(width, height){
  area <- width * height
  return(area)
}
LottedeVos/myfirstpackage documentation built on May 3, 2019, 9:05 p.m.