Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //January 23, 2015
- public class DogDriver{
- public static void main(String[] args){
- Dog Corgi = new Dog();
- System.out.println(Corgi.Bark());
- Corgi.SetAge(50);
- System.out.println(Corgi.GetAge());
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement