Alpha to main #1

Merged
chris merged 5 commits from Alpha into master 2021-03-18 13:00:33 -04:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 909d5353df - Show all commits

View File

@ -43,7 +43,7 @@ public class Main {
total = Calc.div(num1, num2); total = Calc.div(num1, num2);
System.out.println(total); System.out.println(total);
} }
default -> System.out.println("Unexpected value: " + op + " ...restarting program"); default -> System.out.println("Unexpected value: '" + op + "' ...restarting program");
} }
} }
} }