Advertisement
Guest User

Untitled

a guest
Dec 7th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. class driver{
  2.     public static void main(String args[]){
  3.     articolo art = fun();
  4.     System.out.println(art);
  5.     }
  6.     static articolo fun(){
  7.         articolo art1 = new articolo();
  8.         System.out.println(art1);
  9.         return art1;
  10.     }
  11.    
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement