Guest User

Untitled

a guest
Oct 5th, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.18 KB | None | 0 0
  1.  
  2. package recursion;
  3.  
  4. public class Recursion {
  5.  
  6.  
  7.    
  8.     Recursion(){
  9.         new Recursion();
  10.     }
  11.    
  12.     public static void main(String[] args) {
  13.  
  14.         new Recursion();
  15.     }
  16. }
Add Comment
Please, Sign In to add comment