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.

Cmd.java 173B

12345678910
  1. package example.kusedep;
  2. import example.dep.Dep;
  3. public class Cmd {
  4. public static void main(String[] args) {
  5. Dep dep = new Dep();
  6. System.out.println(dep);
  7. }
  8. }