R/ruler.R

Defines functions ruler

Documented in ruler

ruler<-function(a="")
  {
    if(missing(a)) { a=NULL }
    if(is.null(a))
      {
        cat("c...|....1....|....2....|....3....|....4....|....5....|....6....|....7....|", sep="\n")
      }
    else
      {
        cat(a, sep="\n")
        cat("c...|....1....|....2....|....3....|....4....|....5....|....6....|....7....|", sep="\n")
      }

  }

Try the RSEIS package in your browser

Any scripts or data that you put into this service are public.

RSEIS documentation built on Aug. 19, 2023, 5:07 p.m.