Terminal control/Ringing the terminal bell: Difference between revisions

Content added Content deleted
(J . This sentence is short enough to explain.)
(Added Go example)
Line 122: Line 122:
=={{header|gnuplot}}==
=={{header|gnuplot}}==
<lang gnuplot>print "\007"</lang>
<lang gnuplot>print "\007"</lang>

=={{header|go}}==
<lang go>package main

import "fmt"

func main() {
fmt.Print("\a")
}
</lang>


=={{header|Haskell}}==
=={{header|Haskell}}==