view Hello.java @ 74:00b1ce768051

made a mark
author "Andrew Dinn <adinn@redhat.com>"
date Mon, 16 Apr 2012 16:30:59 +0100
parents 8bac79b4db25
children ec7e39a1bd54
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());
  }

  private static class Something
  {
    int x = 3;

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

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

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

  static void hello()
  {
    System.out.println ("Hello World!");
    System.out.println ("Greetings Venus!");
    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");
    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?");
  }
}