view Hello.java @ 96:c3a1a0f6fcda

Adding changes to test to push repo.
author Raoul Veroy <rveroy@cs.tufts.edu>
date Thu, 16 Jul 2015 10:13:41 -0500
parents 40e55510aec4
children 095881f1374a
line wrap: on
line source

import java.io.*;

public class Hello
{
  public static void main (String[] args)
  {
    System.out.println("nw task 1");
    Hello.hello();
    System.out.println (args.length > 0 ? args[0] : "Unknown person");
    World.world();
    new Mandelbrot();
    System.out.println("");
    System.out.println("nw task 2");
    new Something().doit();
    System.out.println(new Something().dontdoit());
    System.out.println(new Something().dodoitanddontdoit());
  }

  private static class Something
  {
    int x = 4;

    public Something()
    {
      System.out.println ("something");
    }

    public void doit()
    {
      x++;
      System.out.println (x);
      x--;
    }

    public int dontdoit()
    {
      x++;
      x--;
      return x;
    }
    
    public int dodoitanddontdoit()
    {
		doit();
		return dontdoit();
	}
  }

  static void hello()
  {
    System.out.println ("Hello World!");
    System.out.println ("Greetings Mars!");
    System.out.println ("I am not so cool!");
    System.out.println ("But I am!"); 
    System.out.println ("orly?");
    System.out.println ("yarly?");
    System.out.println ("Slow and fuzzy");
    System.out.println ("I'll repeat the original question");
    try
      {
	Thread.sleep(1);
      }
    catch (InterruptedException ie)
      {
        /* Ignore short sleep. */
      }

    System.out.println ("Are you now or have you ever been");
    System.out.println ("a member of the common ass party");
    System.out.println ("or any other common ass organization?");
    System.out.println ("Do I still have push access - yes - yippee");
  }
}

// Push changes to testrepo. - Raoul