Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. public class Tweet
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         Bird tweety = new Bird();
  6.         Colibri coly = new Colibri();
  7.         tweety.tweet();
  8.         coly.tweet();
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement