Added apps/q - the Q distributed file store framework, by aum

This commit is contained in:
aum
2005-04-18 17:03:21 +00:00
committed by zzz
parent 7f3c953e14
commit 418facc7e0
80 changed files with 17037 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
public class helloworld
{
public static void main(String [] args)
{
helloworld h = new helloworld();
h.greet();
}
public void greet()
{
System.out.println("Hi, this is your greeting");
}
}