R/print.rmake.rule.R

Defines functions print.rmake.rule

#' @export
print.rmake.rule <- function(x, ...) {
  cat('(')
  cat(paste(x$depends, collapse=', '))
  cat(') -> ')
  cat(x$type)
  cat(' -> (')
  cat(paste(x$target, collapse=', '))
  cat(')')
}

Try the rmake package in your browser

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

rmake documentation built on May 1, 2019, 10:37 p.m.