func Beep() os.Error { if C.beep() == C.ERR { return CursesError{"beep failed"} } return nil }
// Beep requests the terminal make an audible bell or, if not available, // flashes the screen. Note that screen flashing doesn't work on all // terminals func Beep() { C.beep() }