vote up 3 vote down star
4

I'm making a small ruby command line script and I wanted to know what the simplest way to have the program emit a beep is.

flag

25% accept rate

2 Answers

vote up 12 vote down check

Try printing the audible bell character:

print "\a"
link|flag
vote up 6 vote down

For windows, use the win32-sound library - Adding Sound to Your Ruby Apps.

You'd do something like:

Sound.beep(100, 500)

For non windows, looks like this could work: How to make beep sounds?

puts 7.chr
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.