Files
kotlin-fork/samples/socket
Ilya Matveev 52bbbc1815 gradle-plugin: Specify compiler version in project properties
This patch allows gradle-plugin user to specify a compiler version
via project properties. The default version is 0.2. It also updates
samples to use this new version of gradle plugin.
2017-05-05 19:40:21 +07:00
..
2017-03-31 10:20:29 +03:00
2017-04-07 15:16:04 +03:00
2017-04-26 20:07:06 +03:00

Sockets demo

Compile the echo server (in EAP only supported on Mac host):

./build.sh

You also may use Gradle to build the server:

../gradlew build

Run the server:

./EchoServer.kexe 3000 &

Test the server by conecting to it, for example with telnet:

telnet localhost 3000

Write something to console and watch server echoing it back.

Quit telnet by pressing ctrl+] ctrl+D