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.

Class.java 222B

12345678910111213
  1. package com.wibble.foo;
  2. public class Class {
  3. private String name = "Andy";
  4. public static void main(String [] argv) {
  5. new Class().print();
  6. }
  7. public void print() {
  8. System.out.println("Hello "+name);
  9. }
  10. }