Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Generate sound/beep in fortran 90/95

I need to generate a sound in fortran when my run ends. I need something similar to "\a" or Beep(,) that are used in c++.

like image 591
Constantinos Kas Avatar asked Dec 06 '25 06:12

Constantinos Kas


1 Answers

Try adding the following at the end of your program

print *, char(7)
like image 113
cup Avatar answered Dec 09 '25 05:12

cup