
-----------------------------------
eNc
Wed Feb 23, 2005 9:06 pm

Methods
-----------------------------------
111

-----------------------------------
wtd
Wed Feb 23, 2005 9:56 pm


-----------------------------------
Kinda like:

public class Test
{
   private static String foo()
   {
      return "Foo!";
   }

   private static String greeting(String input)
   {
      return "Hello, " + input;
   }

   public static void Main(String[] args)
   {
      System.out.println(greeting(foo()));
   }
}
