From b4b2dfa8fc9efc57cff418b1a5ea5b1428d95ac6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20A=2E=20Ortega?= Date: Wed, 7 May 2014 11:32:17 -0500 Subject: [PATCH] Changed it a bit. --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c0228af..5899974 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,10 @@ ConsoleChat =========== -This program was made as a personal project to learn a bit of networking in Java. It is quite simple, and was made with Java 1.7 (although it can most likely work with 1.6 as well). Even though this was just made for personal learning, I do plan on improving on it every now and then by adding new features. +This program was made as a personal project to learn Java network programming. The concept of it is rather simple, all it does is send messages to a server which, in turn, sends the message to everyone else (aside from some other commands added). Although the license does say GNU GPLv3, this license will not trully be enforced, however, take into account that if you make your programs open-source others like you will be able to learn from them. + +

Compilation

+Compile in the corresponding directory. + + $ javac Server.java + $ javac Client.java