Advertisement
wingman007

Java - JavaApplication26 App2.java

Dec 7th, 2013
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.52 KB | None | 0 0
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package App2;
  6.  
  7. import reuse.Human;
  8.  
  9. /**
  10.  *
  11.  * @author fmi
  12.  */
  13. public class App2 {
  14.     public static void main(String[] args) {
  15.         // TODO code application logic here
  16.         Human stoyan;
  17.         stoyan = new Human("Ivan", "Ivan", 25);
  18.         String introduction = stoyan.inroduceYouself();
  19.        
  20.         System.out.println(introduction);
  21.         System.out.println("Hello!");
  22.        
  23.     }    
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement