Files
i2p.i2p/apps/q/java/src/net/i2p/aum/helloworld.java

18 lines
242 B
Java

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");
}
}