R/timestable.R

Defines functions timestable

Documented in timestable

#'calculate timestable
#'
#'This function learn times table
#'
#'@examples
#'
#'timestable(c(2:5))
timestable <- function(k){
  for (f in func){
    for (i in 1:9){
      cat(f,'x',i, '=', f*i, ' , ')
    }
  }
}
21810669/timestable documentation built on May 25, 2020, 12:43 a.m.