Spaces for Indented Output
Returns a character string containing two times indent
spaces.
indentSpaces(indent = 0)
indent |
Desired level of indentation. The number of returned spaces will be twice this argument. |
A character string containing spaces, of length twice indent
.
Peter Langfelder, Peter.Langfelder@gmail.com
spaces = indentSpaces(0); print(paste(spaces, "This output is not indented...")); spaces = indentSpaces(1); print(paste(spaces, "...while this one is."))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.