Skip to contents

Generate a blank space n characters long; useful for aligning text to be printed to console

Usage

MakeSpace(n)

Arguments

n

Length space should be

Value

A space (' ') of length n

Examples

# \donttest{
srtdisk:::MakeSpace(n = 10)
#> [1] "          "
cat('hello', srtdisk:::MakeSpace(n = 10), 'world\n', sep = '')
#> hello          world
# }