forked from I2P_Developers/i2p.i2p
18 lines
242 B
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");
|
|
}
|
|
}
|
|
|
|
|
|
|