Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/seiyakobayashi/echoserver

Echo Server (a server just echoing what you write) written in C and Rust.
https://github.com/seiyakobayashi/echoserver

Last synced: 11 days ago
JSON representation

Echo Server (a server just echoing what you write) written in C and Rust.

Awesome Lists containing this project

README

        

# EchoServer

## How to run Echo Server (Rust ver.)

```
$ cargo run
$ telnet 127.0.0.1 8080
```
Then type what you want!

```
Hello // This is your input
You just wrote: Hello // This is the output from server
```