This program translates English text (ASCII) files to Morse Code files. It can also translates Morse Code files into English text (ASCII) files. It also creates a Morse Code "cheat sheet"
Follow the source code link above
and choose "Save As" from the "File" menu of the browser.
Be sure the file name you use ends in .cc (or some other legal C++ extension).
Complile the file you saved using g++ (or some other C++ compiler).
g++ -o <executable file name> <source code file name>
Example:
g++ -o xlate translate.cc
Last Updated on 8/20/96