Guest User

Untitled

a guest
Apr 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. public class Test {
  2.  
  3.     public static void main(String[] args){
  4.         Blah[] a =
  5.         {
  6.             {"Pie", 1, 2},
  7.             {"Chicken", 1, 2}
  8.         };
  9.     }
  10.    
  11.     private class Blah{
  12.         public Blah(String a, int b, int c){}
  13.     }
  14.  
  15. }
Add Comment
Please, Sign In to add comment