R/convert_usd_to_huf.R

Defines functions convert_usd_to_huf

Documented in convert_usd_to_huf

#' Convert USD to HUF
#' @param x number
#' @return number
#' @export
#' @importFrom logger log_info

convert_usd_to_huf <- function(x){
  y <- get_usdhuf()
  log_info('{x} USD currently equels this amount of HUF:')
  return(x*y)
}
mihalyfogarasi/beadando documentation built on Dec. 21, 2021, 6:54 p.m.