As in
stuff like
system.out.print("Hello? Are you there?");
Or as in complex stuff with pre-defined structure? as in
public int msg = 0
If(command.equalIgnoreCase("Hello") && msg == 0)
{
sendMessage("Hello? Are you there?");
msg=+1
} else {
sendMessage("Yeah you are here!");
}
its alright...