alarm
Alert the User
Gives an audible or visual signal to the user.
- Keywords
- utilities
Usage
alarm()
Details
alarm()
works by sending a "\a"
character to the console.
On most platforms this will ring a bell, beep, or give some other signal
to the user (unless standard output has been redirected).
It attempts to flush the console (see flush.console
).
Value
No useful value is returned.
Examples
library(utils)
# NOT RUN {
alarm()
# }
Community examples
Looks like there are no examples yet.