Commit 1f1af3da authored by m.baxter's avatar m.baxter

Finished Skeleton.

parent 57fce6ea
/MorseConverter/
......@@ -5,9 +5,7 @@ import java.util.Scanner;
public class Main {
/**
* @param args
*/
// 1 represents a dot. 111 represents a dash. 0 represents a dot/dash delimiter and 000 represents a letter delimiter.
public static void main(String[] args) {
int menuSelect;
......@@ -20,7 +18,7 @@ public class Main {
switch(menuSelect) {
case 1:
// Get user input and then convert from English to morse
// Get user input and then convert from English to morse.
break;
case 2:
......@@ -28,7 +26,7 @@ public class Main {
break;
case 3:
// Print the contents of the map
// Print the contents of the map.
Morse.printMap(map);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment