mirror of
https://github.com/Dichgrem/Java.git
synced 2025-12-16 20:42:00 -05:00
13 lines
244 B
Java
13 lines
244 B
Java
package com.study.demo2;
|
|
|
|
public class Main {
|
|
public static void main(String[] args) {
|
|
Animal dog = new Dog("Buddy");
|
|
Animal bird = new Bird("Tweety");
|
|
dog.makeSound();
|
|
dog.move();
|
|
bird.makeSound();
|
|
bird.move();
|
|
}
|
|
}
|