You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Driver.java 295B

123456789101112131415161718
  1. package main;
  2. public class Driver{
  3. public static void main(String[] args) {
  4. Driver d = new Driver();
  5. d.doStuff();
  6. d.doOtherStuff();
  7. }
  8. private void doOtherStuff() {
  9. //System.out.println("doing other stuff");
  10. }
  11. private void doStuff() {
  12. //System.out.println("doing stuff");
  13. }
  14. }