1. public class CatDog {
  2.  
  3. public static void main(String[] args) {
  4. System.out.print("the doggoes woof");
  5. catDog();
  6. }
  7.  
  8. public static void catDog() {
  9. System.out.print("the cat dog goes woof-meow");
  10. }
  11. }