pls give me a simple messenger code
Printable View
pls give me a simple messenger code
:DCode:public class Message {
public void send(String message) {
System.out.println(message);
}
public static void main(String args[]) {
Message m = new Message();
m.send("I should write my own code...");
}
}
that was really funny,,,,,depicting u completly
What? It meets the requirements:
It is free and open source. Feel free to include it under the open GPL. (your welcome)Quote:
pls give me
Not sure how much more simple I could have gotten with it. (sorry :blush: )Quote:
a simple
It takes a message and displays it. What more did you want it to do? (sorry, the specs were incomplete)Quote:
messenger code
I suppose you could have called it 'Messenger'. Perhaps you may have jumped to a conclusion about what the specified messenger code should do, but it's impossible to tell...
The most important single aspect of software development is to be clear about what you are trying to build...
B. Stroustrup