my.cat: Alias for cat with a newline added to end.

Description Usage Arguments Examples

View source: R/my.cat.R

Description

Alias to the cat command with a newline added to the end of the message string.

Usage

1
my.cat (message, ...)

Arguments

...
sep
collapse

Examples

1
2
3
4
5
6
7
8
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
my.cat <- function(message,...){
  cat(paste(message,"\n",sep=''),...)
}

colinsheppard/colinmisc documentation built on July 10, 2020, 5:59 p.m.