Re: Getting a program to inform you when it's done



Oh, btw, I figured out how to do local Windows beeping (not that it
helps me much as my solver needs to run in Linux...)

Thought I'd post it here anyway.

program beep

INTEGER(4) frequency, duration
frequency = 1000
duration = 1000
CALL BEEPQQ(frequency, duration)

end program beep

.