You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MyMain.java 278B

123456789101112131415
  1. package blah;
  2. /** */
  3. public class MyMain {
  4. /**
  5. * @param args
  6. */
  7. public static void main(String[] args)
  8. {
  9. MyClass mc = new MyClass();
  10. mc.getRandomInt(new String[][]{{ "a", "b",
  11. "c"},{"x","y","z"}});
  12. }
  13. }