Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package App2;
- import reuse.Human;
- /**
- *
- * @author fmi
- */
- public class App2 {
- public static void main(String[] args) {
- // TODO code application logic here
- Human stoyan;
- stoyan = new Human("Ivan", "Ivan", 25);
- String introduction = stoyan.inroduceYouself();
- System.out.println(introduction);
- System.out.println("Hello!");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement