R/hello.R

# Hello, world!
#
# This is an example function named 'hello'
# which prints 'Hello, world!'.
#
# You can learn more about package authoring with RStudio at:
#
#   http://r-pkgs.had.co.nz/
#
# Some useful keyboard shortcuts for package authoring:
#
#   Build and Reload Package:  'Ctrl + Shift + B'
#   Check Package:             'Ctrl + Shift + E'
#   Test Package:              'Ctrl + Shift + T'

#' this is a test
#'
#' @param d is a parameter
#' @examples
#' hello()
#'some mroe stuff
#'
#'
#'dsd person("Hadley", "Wickham", email = "hadley@rstudio.com", role = c("aut", "cre"))  person("Hadley", "Wickham", email = "hadley@rstudio.com", role = c("aut", "cre"))
#'
#'
hello <- function(d) {
  print("Hello, world!")
}




#' Title
#'
#' @param s
#' @param f
#'
#' @return
#' @export
#'
#' @examples
new <- function(s,f) {
  #do sth
}
majazaloznik/pkgs.had documentation built on May 31, 2019, 2:26 p.m.