Terminal control/Ringing the terminal bell: Difference between revisions

Added Go example
(J . This sentence is short enough to explain.)
(Added Go example)
Line 122:
=={{header|gnuplot}}==
<lang gnuplot>print "\007"</lang>
 
=={{header|go}}==
<lang go>package main
 
import "fmt"
 
func main() {
fmt.Print("\a")
}
</lang>
 
=={{header|Haskell}}==
Anonymous user