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.

MyClass.java 220B

123456789101112
  1. package a;
  2. public class MyClass {
  3. public static void main(String []argv) {
  4. new MyClass().print("hello");
  5. new MyClass().print("world");
  6. }
  7. public void print(String msg) {
  8. System.out.println(msg);
  9. }
  10. }